mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
38 lines
418 B
CSS
38 lines
418 B
CSS
.grid {
|
|
display: grid;
|
|
}
|
|
|
|
.a,
|
|
.b,
|
|
.c::selection,
|
|
.d:read-only,
|
|
.e::placeholder {
|
|
color: yellow;
|
|
}
|
|
|
|
::selection {
|
|
color: red;
|
|
}
|
|
|
|
:read-only {
|
|
color: black;
|
|
}
|
|
|
|
.f:read-write, .g:read-write {
|
|
background: #fff;
|
|
}
|
|
|
|
.example:any-link:read-only {
|
|
color: red;
|
|
}
|
|
|
|
.element1:focus,
|
|
.element1:read-only {
|
|
background-color: red;
|
|
}
|
|
|
|
/* TODO fix me */
|
|
.c::selection {
|
|
backface-visibility: visible;
|
|
}
|