From 5885f63665d3a588ee7282ce99207563e616356e Mon Sep 17 00:00:00 2001 From: Dorian Zedler Date: Thu, 29 Dec 2022 18:04:00 +0100 Subject: [PATCH] Feat: better animation --- index.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/index.css b/index.css index b67b459..e440658 100644 --- a/index.css +++ b/index.css @@ -8,15 +8,16 @@ @keyframes blinker { 50% { - opacity: 0; + opacity: 0.3; } } .timer.my-turn { color: #0f0; - animation: blinker 1s linear infinite; + animation: blinker 2s ease infinite; } .timer.over { color: #f00; + animation: blinker 0.5s ease infinite; } \ No newline at end of file