From 0af4c34ed9f3daf193f3dfa86b9a8b000915d019 Mon Sep 17 00:00:00 2001 From: PhiMarHal <77635908+PhiMarHal@users.noreply.github.com> Date: Mon, 4 Nov 2024 18:47:31 +0100 Subject: [PATCH] Blinky boy --- styles.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/styles.css b/styles.css index 4c83560..7ec8673 100644 --- a/styles.css +++ b/styles.css @@ -208,4 +208,14 @@ body { @keyframes fade { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } +} + +@keyframes softBlink { + 0%, 100% { opacity: 1; } + 50% { opacity: 0.5; } +} + +.word-pending { + color: white !important; + animation: softBlink 1.5s ease-in-out infinite; } \ No newline at end of file