mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
17 lines
285 B
CSS
17 lines
285 B
CSS
|
@keyframes anim {
|
||
|
100% { background-image: url("green-20x20.png"); }
|
||
|
}
|
||
|
|
||
|
@keyframes ref {
|
||
|
100% { background-image: linear-gradient(to bottom, lime); }
|
||
|
}
|
||
|
|
||
|
* {
|
||
|
background: linear-gradient(to bottom, red);
|
||
|
animation: anim steps(5,end) 20s;
|
||
|
}
|
||
|
|
||
|
#reference {
|
||
|
animation-name: ref;
|
||
|
}
|