Feat: better animation

This commit is contained in:
Dorian Zedler 2022-12-29 18:04:00 +01:00
parent cc1714d2a6
commit 5885f63665
Signed by: dorian
GPG key ID: 989DE36109AFA354

View file

@ -8,15 +8,16 @@
@keyframes blinker { @keyframes blinker {
50% { 50% {
opacity: 0; opacity: 0.3;
} }
} }
.timer.my-turn { .timer.my-turn {
color: #0f0; color: #0f0;
animation: blinker 1s linear infinite; animation: blinker 2s ease infinite;
} }
.timer.over { .timer.over {
color: #f00; color: #f00;
animation: blinker 0.5s ease infinite;
} }