mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
d46d50b761
This was just fixed by 3e06942847
20 lines
345 B
CSS
20 lines
345 B
CSS
@import "reset-to-defaults.css";
|
|
|
|
@keyframes foo {
|
|
0% { box-shadow: 20px 20px tomato; }
|
|
100% { box-shadow: 20px 20px tomato; }
|
|
}
|
|
|
|
label {
|
|
font-size: 40px;
|
|
animation-name: foo;
|
|
animation-duration: 100s;
|
|
animation-timing-function: linear;
|
|
animation-delay: 1ms;
|
|
}
|
|
|
|
.reference {
|
|
animation: initial;
|
|
box-shadow: 20px 20px tomato;
|
|
}
|