forked from AuroraMiddleware/gtk
20 lines
184 B
CSS
20 lines
184 B
CSS
* + *,
|
|
#red {
|
|
color: red
|
|
}
|
|
|
|
* ~ * ~ GtkLabel,
|
|
#lime {
|
|
color: lime;
|
|
}
|
|
|
|
* ~ * + GtkLabel ~ *,
|
|
#blue {
|
|
color: blue;
|
|
}
|
|
|
|
* + GtkLabel ~ * ~ GtkLabel + *,
|
|
#purple {
|
|
color: purple;
|
|
}
|