nyxsite/site/templates/assets/index.css

47 lines
665 B
CSS
Raw Normal View History

@media (prefers-color-scheme: dark) {
* {
background-color: black;
color: white;
}
}
2025-02-24 19:11:57 -06:00
@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;
2025-02-24 19:05:13 -06:00
margin: auto;
width: 50%;
2025-02-24 19:11:57 -06:00
border: 10px solid lightgrey;
border-radius: 5px;
2025-02-24 19:05:13 -06:00
}
#particle-canvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
#bird-canvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}