blug/site/style.css

19 lines
280 B
CSS
Raw Normal View History

2024-05-26 17:58:00 +02:00
html {
color-scheme: dark;
font-family: sans-serif;
2024-05-26 22:29:24 +02:00
background-color: #111;
2024-05-26 17:58:00 +02:00
}
main {
width: 800px;
background-color: #222;
margin: auto;
padding: 2px 32px 32px;
2024-05-26 22:29:24 +02:00
border-left: 4px solid #d3f;
}
@media screen and (max-width:900px) {
main {
width: calc(100% - 82px);
}
2024-05-26 17:58:00 +02:00
}