14 lines
157 B
CSS
14 lines
157 B
CSS
|
:root {
|
||
|
color-scheme: light dark;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
.post-body {
|
||
|
max-width: 80%;
|
||
|
}
|