mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-30 15:31:34 +00:00
24 lines
197 B
CSS
24 lines
197 B
CSS
|
a {
|
||
|
animation-name: initial;
|
||
|
}
|
||
|
|
||
|
b {
|
||
|
animation-name: inherit;
|
||
|
}
|
||
|
|
||
|
c {
|
||
|
animation-name: unset;
|
||
|
}
|
||
|
|
||
|
d {
|
||
|
animation-name: none;
|
||
|
}
|
||
|
|
||
|
e {
|
||
|
animation-name: bob;
|
||
|
}
|
||
|
|
||
|
f {
|
||
|
animation-name: bob, alice;
|
||
|
}
|