website/resources/main.css

27 lines
429 B
CSS
Raw Normal View History

2025-02-04 03:18:19 -05:00
:root {
2025-02-04 03:32:23 -05:00
color-scheme: light dark;
color: light-dark(#474747, #b9b9b9);
background-color: light-dark(#ebebeb, #252525);
2025-02-04 03:18:19 -05:00
}
body {
display: flex;
align-items: center;
justify-content: center;
}
.post-body {
2025-02-04 03:32:23 -05:00
width: 66%;
display: block;
padding: 1rem;
background-color: light-dark(#ffffff, #181818);
}
.post-body > h1 {
text-align: center;
}
.post-body > p {
text-align: justify;
2025-02-04 03:18:19 -05:00
}