Cutesy stuff
This commit is contained in:
+23
-1
@@ -63,6 +63,7 @@ footer {
|
||||
section {
|
||||
font-weight: 600;
|
||||
margin-left: 12em;
|
||||
line-height: 1.2em;
|
||||
}
|
||||
|
||||
a {
|
||||
@@ -72,4 +73,25 @@ a {
|
||||
|
||||
.comment {
|
||||
color: lightgreen;
|
||||
}
|
||||
}
|
||||
|
||||
.blink {
|
||||
animation: blink-animation 1s steps(5, start) infinite;
|
||||
-webkit-animation: blink-animation 1s steps(5, start) infinite;
|
||||
}
|
||||
|
||||
.cursor {
|
||||
border-left: 1px solid white;
|
||||
}
|
||||
|
||||
@keyframes blink-animation {
|
||||
to {
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes blink-animation {
|
||||
to {
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
+2
-1
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<title>fxl codes</title>
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:300,600" rel="stylesheet" type="text/css">
|
||||
<link href="main.css" rel="stylesheet" type="text/css">
|
||||
<link href="css/main.css" rel="stylesheet" type="text/css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
@@ -20,6 +20,7 @@
|
||||
<dt class="comment">// Practice makes perfect...?</dt>
|
||||
<dd>experience.Code = new CodeCollection();</dd>
|
||||
<dd>experience.Code.<a href="https://github.com/feminaexlux">Explore()</a>;</dd>
|
||||
<dd class="blink cursor"> </dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user