site/assets/css/style.css

20 lines
335 B
CSS
Raw Permalink Normal View History

body {
max-width: 1000px;
margin: 2em auto;
background-color: black;
color: white;
font-family: Arial, sans-serif
}
2025-02-16 02:56:02 +01:00
a {color: #05d5ff}
@media (prefers-color-scheme: light) {
body {
background-color: white;
color: black
}
.logo {
filter: invert(1)
}
2025-02-16 02:56:02 +01:00
a {color: #0066cc}
}