mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-17 06:10:15 +00:00
19 lines
253 B
CSS
19 lines
253 B
CSS
|
@import "reset-to-defaults.css";
|
||
|
|
||
|
@keyframes foo {
|
||
|
100% { background-color: blue; }
|
||
|
}
|
||
|
|
||
|
GtkWindow {
|
||
|
background-color: #7F0080;
|
||
|
}
|
||
|
|
||
|
GtkBox {
|
||
|
background-color: red;
|
||
|
}
|
||
|
|
||
|
GtkBox GtkBox {
|
||
|
background-color: transparent;
|
||
|
animation: foo 100s steps(2);
|
||
|
}
|