diff --git a/www/index.html b/www/index.html deleted file mode 100644 index ff999b3..0000000 --- a/www/index.html +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - i think alice is lost... - - - - - -
-

dobutterfliescry.net

-

Do butterflies cry when they're sad?

-

(ilovem)

-
- - diff --git a/www/index.html.bak b/www/index.html.bak deleted file mode 100644 index 9b7019e..0000000 --- a/www/index.html.bak +++ /dev/null @@ -1,9 +0,0 @@ - - - - MITTENS NOW!! - - -

Give me your mittens!

- - diff --git a/www/style.css b/www/style.css deleted file mode 100644 index 70589d2..0000000 --- a/www/style.css +++ /dev/null @@ -1,31 +0,0 @@ -:root { - --text-color: solid orange; -} - -/* =========================================================== * - * Type Writer Effect * - * Ref: https://css-tricks.com/snippets/css/typewriter-effect/ * -/* =========================================================== */ - -.typewriter { - overflow: hidden; /* Crop everything that hasn't been "typed" yet */ - border-right: .15em solid orange; /* Cursor */ - white-space: nowrap; /* Keeps the content on a single line */ - margin: 0 auto; /* Scrolling effect while "typing" */ - letter-spacing: .15em; /* Adjustable */ - animation: - typewriter-typing 3.5s steps(40, end), - typewriter-cursor-blink .75s step-end infinite; -} - -/* .typewriter typing effect */ -@keyframes typerwriter-typing { - from { width: 0 } - to { width: 100% } -} - -/* .typewriter cursor blink effect */ -@keyframes typerwriter-cursor-blink { - from, to { border-color: transparent } - 50% { border-color: orange; } -}