webtools/site/2lcc/style.css

25 lines
438 B
CSS
Raw Permalink Normal View History

2025-09-27 03:32:13 +00:00
: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 */
}
}
2025-09-25 22:39:14 +00:00
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 {
2025-09-27 03:32:13 +00:00
background-color: var(--exact-match-color);
2025-09-25 22:39:14 +00:00
}