From 364555d49ef671d79ab92acada2a5f7681c03220 Mon Sep 17 00:00:00 2001 From: Lani Aung Date: Thu, 21 Apr 2016 20:01:13 -0700 Subject: [PATCH] Cutesy stuff --- main.css => css/main.css | 24 +++++++++++++++++++++++- index.html | 3 ++- 2 files changed, 25 insertions(+), 2 deletions(-) rename main.css => css/main.css (80%) diff --git a/main.css b/css/main.css similarity index 80% rename from main.css rename to css/main.css index d4370b2..01bdf65 100644 --- a/main.css +++ b/css/main.css @@ -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; -} \ No newline at end of file +} + +.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; + } +} diff --git a/index.html b/index.html index 79b77f9..265164d 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ fxl codes - +
@@ -20,6 +20,7 @@
// Practice makes perfect...?
experience.Code = new CodeCollection();
experience.Code.Explore();
+