mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-11 19:30:10 +00:00
24 lines
322 B
CSS
24 lines
322 B
CSS
* {
|
|
engine: none;
|
|
border-radius: 0;
|
|
border-style: none;
|
|
border-image: none;
|
|
background-image: none;
|
|
}
|
|
|
|
GtkWindow {
|
|
background-color: green;
|
|
}
|
|
|
|
GtkButton {
|
|
background-color: black;
|
|
border-style: solid;
|
|
border-color: rgba(255,0,0,0.6);
|
|
border-width: 4;
|
|
}
|
|
|
|
#reference {
|
|
border-color: rgb(153,102,0);
|
|
}
|
|
|