36 lines
No EOL
553 B
CSS
36 lines
No EOL
553 B
CSS
body[data-theme="light"] {
|
|
color: #31363F;
|
|
}
|
|
|
|
body[data-theme="dark"] {
|
|
color: #eeeeee;
|
|
}
|
|
|
|
body[data-theme="dark"]>.center>a {
|
|
color: #eeeeee !important;
|
|
}
|
|
|
|
body[data-theme="light"]>.center>a {
|
|
color: #31363F !important;
|
|
}
|
|
|
|
:root {
|
|
font-family: Inter, sans-serif;
|
|
font-feature-settings: 'liga' 1, 'calt' 1;
|
|
}
|
|
|
|
@supports (font-variation-settings: normal) {
|
|
:root {
|
|
font-family: InterVariable, sans-serif;
|
|
}
|
|
}
|
|
|
|
.center {
|
|
position: absolute;
|
|
top: 10px;
|
|
left: 10px;
|
|
}
|
|
|
|
.selected {
|
|
font-weight: bold;
|
|
} |