mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
0a440a804f
* :nth-child(first) => :first-child * :nth-child(last) => :last-child * Add semicolons at end of declarations * Remove spaces between color functions (shade, alpha, ...) and args
20 lines
173 B
CSS
20 lines
173 B
CSS
* + *,
|
|
#red {
|
|
color: red;
|
|
}
|
|
|
|
* ~ * ~ label,
|
|
#lime {
|
|
color: lime;
|
|
}
|
|
|
|
* ~ * + label ~ *,
|
|
#blue {
|
|
color: blue;
|
|
}
|
|
|
|
* + label ~ * ~ label + *,
|
|
#purple {
|
|
color: purple;
|
|
}
|