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 {
|
@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;
|
||||||
}
|
}
|
Loading…
Reference in a new issue