forked from AuroraMiddleware/gtk
f313a8235b
Unset all CSS; Adwaita was messing up things.
19 lines
232 B
CSS
19 lines
232 B
CSS
* {
|
|
all: unset;
|
|
border-color: red;
|
|
}
|
|
|
|
GtkButton {
|
|
background-color: purple;
|
|
border-style: none;
|
|
border-width: 5px;
|
|
border-radius: 15px;
|
|
}
|
|
|
|
#reference {
|
|
border-style: solid;
|
|
border-width: 0;
|
|
border-radius: 15px;
|
|
}
|
|
|