From f011064ed0c868e21fdcd54c68e54d6813557bc9 Mon Sep 17 00:00:00 2001 From: Nicholas Surmava Date: Thu, 19 Mar 2026 11:03:07 -0400 Subject: [PATCH] changed up temp style --- index.html | 2 +- static/css/style.css | 29 ++++++++++++++++++++--------- 2 files changed, 21 insertions(+), 10 deletions(-) diff --git a/index.html b/index.html index 238a916..b0b6cef 100644 --- a/index.html +++ b/index.html @@ -9,6 +9,6 @@

nicholassurmava.com

-

Stay Tuned

+

Stay Tuned...

\ No newline at end of file diff --git a/static/css/style.css b/static/css/style.css index ad9a3a5..4142dfc 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -49,17 +49,28 @@ body { flex-direction: column; align-items: center; justify-content: center; + + background-color: black; } -@keyframes ellipsis { - 0% { content: ''; } - 25% { content: '.'; } - 50% { content: '..'; } - 75% { content: '...'; } - 100% { content: ''; } +@keyframes blink { + 0%, 100% { border-color: transparent; } + 50% { border-color: currentColor; } } -h2 .ellipsis::after { - content: ''; - animation: ellipsis 3.5s steps(1, end) infinite; +@keyframes typing { + 0% { width: 0; } + 80% { width: 13ch; } + 100% { width: 13ch; } +} + +h2.typewriter { + overflow: hidden; + white-space: nowrap; + border-right: 2px solid currentColor; + width: 0; + display: inline-block; + animation: + typing 3.5s steps(14, end) infinite, + blink 0.75s step-end infinite; } \ No newline at end of file