mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-29 06:51:10 +00:00
24 lines
215 B
CSS
24 lines
215 B
CSS
|
a {
|
||
|
animation-duration: initial;
|
||
|
}
|
||
|
|
||
|
b {
|
||
|
animation-duration: inherit;
|
||
|
}
|
||
|
|
||
|
c {
|
||
|
animation-duration: unset;
|
||
|
}
|
||
|
|
||
|
d {
|
||
|
animation-duration: 0;
|
||
|
}
|
||
|
|
||
|
e {
|
||
|
animation-duration: 5ms;
|
||
|
}
|
||
|
|
||
|
f {
|
||
|
animation-duration: 5ms, 6s;
|
||
|
}
|