webtools/site/2lcc/style.css
Leon Mika 35270f72ca
All checks were successful
/ publish (push) Successful in 49s
Fixed styling for dark-mode
2025-09-27 13:32:13 +10:00

25 lines
438 B
CSS

:root {
--exact-match-color: rgb(237, 201, 241); /* Purple 150 */
}
@media (prefers-color-scheme: dark) {
:root {
--exact-match-color: rgb(111, 39, 125); /* Purple 700 */
}
}
table#country-list {
table-layout: fixed;
}
table#country-list th.code-column {
width: 6em;
}
table#country-list tr.hidden {
display: none;
}
table#country-list tr.exact td {
background-color: var(--exact-match-color);
}