blug/site/style.css

24 lines
330 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 {
2024-05-31 20:05:55 +02:00
width: calc(100% - 82px);
max-width: 800px;
2024-05-26 17:58:00 +02:00
background-color: #222;
margin: auto;
padding: 2px 32px 32px;
2024-05-26 22:29:24 +02:00
border-left: 4px solid #d3f;
}
2024-05-31 20:05:55 +02:00
code {
font-size: 1rem;
background-color: #1c1c1c;
color: #f90;
}
video {
max-width: 100%;
2024-05-26 17:58:00 +02:00
}