mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 19:52:21 +03:00
25 lines
296 B
CSS
25 lines
296 B
CSS
@-webkit-keyframes anim {}
|
|
@-moz-keyframes anim {}
|
|
@-o-keyframes anim {}
|
|
@keyframes anim {}
|
|
@-webkit-keyframes anim {
|
|
0% {
|
|
color: red;
|
|
}
|
|
}
|
|
@-moz-keyframes anim {
|
|
0% {
|
|
color: red;
|
|
}
|
|
}
|
|
@-o-keyframes anim {
|
|
0% {
|
|
color: red;
|
|
}
|
|
}
|
|
@keyframes anim {
|
|
0% {
|
|
color: red;
|
|
}
|
|
}
|