mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 08:40:08 +00:00
32 lines
351 B
CSS
32 lines
351 B
CSS
.class {
|
|
color: rgb(255,0,0);
|
|
}
|
|
|
|
:focus {
|
|
color: rgb(255,0,0);
|
|
}
|
|
|
|
:nth-child(even) {
|
|
color: rgb(255,0,0);
|
|
}
|
|
|
|
.class.class {
|
|
color: rgb(255,0,0);
|
|
}
|
|
|
|
:focus:focus {
|
|
color: rgb(255,0,0);
|
|
}
|
|
|
|
:nth-child(even):nth-child(even):nth-child(even) {
|
|
color: rgb(255,0,0);
|
|
}
|
|
|
|
#name {
|
|
color: rgb(255,0,0);
|
|
}
|
|
|
|
#name#name#name {
|
|
color: rgb(255,0,0);
|
|
}
|