Cutesy stuff

This commit is contained in:
Lani Aung
2016-04-21 20:01:13 -07:00
parent b60aae1d59
commit 364555d49e
2 changed files with 25 additions and 2 deletions
+22
View File
@@ -63,6 +63,7 @@ footer {
section { section {
font-weight: 600; font-weight: 600;
margin-left: 12em; margin-left: 12em;
line-height: 1.2em;
} }
a { a {
@@ -73,3 +74,24 @@ a {
.comment { .comment {
color: lightgreen; 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
View File
@@ -3,7 +3,7 @@
<head> <head>
<title>fxl codes</title> <title>fxl codes</title>
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:300,600" rel="stylesheet" type="text/css"> <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> </head>
<body> <body>
<header> <header>
@@ -20,6 +20,7 @@
<dt class="comment">// Practice makes perfect...?</dt> <dt class="comment">// Practice makes perfect...?</dt>
<dd>experience.Code = new CodeCollection();</dd> <dd>experience.Code = new CodeCollection();</dd>
<dd>experience.Code.<a href="https://github.com/feminaexlux">Explore()</a>;</dd> <dd>experience.Code.<a href="https://github.com/feminaexlux">Explore()</a>;</dd>
<dd class="blink cursor">&nbsp;</dd>
</dl> </dl>
</section> </section>