24 lines
365 B
CSS
24 lines
365 B
CSS
@keyframes choochoo {
|
|
0% {
|
|
transform: rotateZ(0deg);
|
|
}
|
|
|
|
50% {
|
|
transform: rotateZ(180deg);
|
|
}
|
|
|
|
100% {
|
|
transform: rotateZ(360deg);
|
|
}
|
|
}
|
|
|
|
#words {
|
|
--correct-letter-animation: choochoo 2s infinite linear;
|
|
--untyped-letter-animation: choochoo 2s infinite linear;
|
|
}
|
|
|
|
#words letter,
|
|
#words.withLigatures .word letter {
|
|
display: inline-block;
|
|
}
|