44 lines
829 B
CSS
44 lines
829 B
CSS
:root {
|
|
color-scheme: light dark;
|
|
color: light-dark(#474747, #b9b9b9);
|
|
background-color: light-dark(#ebebeb, #252525);
|
|
font-family: "Open Sans", sans-serif, serif;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.post-body {
|
|
width: 66%;
|
|
display: block;
|
|
padding: 3rem;
|
|
border-radius: 1rem;
|
|
background-color: light-dark(#ffffff, #181818);
|
|
/* text-align: justify; */
|
|
}
|
|
|
|
.post-body > h1 {
|
|
text-align: center;
|
|
color: light-dark(#dd0f9d, #eb6eb7);
|
|
}
|
|
|
|
.post-body > h2 {
|
|
text-align: center;
|
|
color: light-dark(#282828, #dedede);
|
|
}
|
|
|
|
.post-body > h3 {
|
|
text-align: center;
|
|
color: light-dark(#282828, #dedede);
|
|
}
|
|
|
|
.post-body > h4 {
|
|
text-align: center;
|
|
color: light-dark(#282828, #dedede);
|
|
}
|
|
.post-body > p {
|
|
text-indent: 2ch;
|
|
}
|