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 04:17:34 -05:00
|
|
|
font-family: "Open Sans", sans-serif, serif;
|
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;
|
2025-02-04 04:17:34 -05:00
|
|
|
padding: 3rem;
|
|
|
|
border-radius: 1rem;
|
2025-02-04 03:32:23 -05:00
|
|
|
background-color: light-dark(#ffffff, #181818);
|
|
|
|
}
|
|
|
|
|
|
|
|
.post-body > h1 {
|
|
|
|
text-align: center;
|
2025-02-04 04:17:34 -05:00
|
|
|
color: light-dark(#dd0f9d, #eb6eb7);
|
2025-02-04 03:32:23 -05:00
|
|
|
}
|
|
|
|
|
2025-02-04 04:17:34 -05:00
|
|
|
.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);
|
|
|
|
}
|
2025-02-04 03:32:23 -05:00
|
|
|
.post-body > p {
|
2025-02-04 04:17:34 -05:00
|
|
|
text-indent: 2ch;
|
2025-02-04 03:18:19 -05:00
|
|
|
}
|