10 lines
109 B
CSS
10 lines
109 B
CSS
|
.blinky {
|
||
|
animation: blinker 1s step-start infinite;
|
||
|
}
|
||
|
|
||
|
@keyframes blinker {
|
||
|
50% {
|
||
|
opacity: 0;
|
||
|
}
|
||
|
}
|