Feat: better animation
This commit is contained in:
parent
cc1714d2a6
commit
5885f63665
1 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
}
|
Loading…
Reference in a new issue