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
1 changed files with 3 additions and 2 deletions

View File

@ -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;
}