nyxsite/site/templates/assets/index.css
2025-03-17 19:16:15 -05:00

28 lines
No EOL
451 B
CSS

@media (prefers-color-scheme: dark) {
* {
background-color: black;
color: white;
}
}
@media (prefers-color-scheme: light) {
* {
background-color: white;
color: black;
}
}
h1, h2, h3 {
font-family: monospace;
}
body {
font-family: system-ui;
padding: 1%;
font-size: 18px;
max-width: 40em;
margin: auto;
width: 50%;
border: 3px solid lightgrey;
border-radius: 5px;
}