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