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
|
|
|
}
|
|
|
|
|
2025-02-04 22:24:37 -05:00
|
|
|
body, .post {
|
2025-02-04 03:18:19 -05:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2025-02-04 21:39:47 -05:00
|
|
|
flex-direction: column;
|
|
|
|
gap: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-header {
|
2025-02-04 23:43:42 -05:00
|
|
|
width: 50%;
|
2025-02-04 21:39:47 -05:00
|
|
|
display: block;
|
|
|
|
padding: 1rem;
|
|
|
|
border-radius: 1rem;
|
|
|
|
background-color: light-dark(#ffffff, #181818);
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-logo {
|
|
|
|
color: light-dark(#d6000c, #ed4a46);
|
2025-02-04 22:24:37 -05:00
|
|
|
font-size: 2.5rem;
|
2025-02-04 22:07:59 -05:00
|
|
|
font-weight: bold;
|
2025-02-04 21:39:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.site-tagline {
|
2025-02-04 22:07:59 -05:00
|
|
|
color: light-dark(#909995, #777777);
|
|
|
|
font-size: 0.9rem;
|
|
|
|
font-style: italic;
|
2025-02-04 03:18:19 -05:00
|
|
|
}
|
|
|
|
|
2025-02-04 22:24:37 -05:00
|
|
|
.post-body, .post-header {
|
2025-02-04 03:32:23 -05:00
|
|
|
width: 66%;
|
|
|
|
display: block;
|
2025-02-04 22:24:37 -05:00
|
|
|
padding-left: 1.5rem;
|
|
|
|
padding-right: 1.5rem;
|
|
|
|
padding-top: 0.5rem;
|
|
|
|
padding-bottom: 0.5rem;
|
2025-02-04 04:17:34 -05:00
|
|
|
border-radius: 1rem;
|
2025-02-04 03:32:23 -05:00
|
|
|
background-color: light-dark(#ffffff, #181818);
|
2025-02-04 15:57:53 -05:00
|
|
|
/* text-align: justify; */
|
2025-02-04 03:32:23 -05:00
|
|
|
}
|
|
|
|
|
2025-02-04 22:24:37 -05:00
|
|
|
.post-header {
|
|
|
|
padding: 1.5rem;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
2025-02-04 23:43:42 -05:00
|
|
|
gap: 0.5rem;
|
2025-02-04 22:24:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.post-title {
|
2025-02-04 03:32:23 -05:00
|
|
|
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 22:24:37 -05:00
|
|
|
.post-title > h1 {
|
|
|
|
margin-top: 0px;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
|
|
|
|
2025-02-04 23:43:42 -05:00
|
|
|
.post-info {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
gap: 1rem;
|
|
|
|
color: light-dark(#909995, #777777);
|
|
|
|
font-size: 0.9rem;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post-read-time {
|
|
|
|
text-decoration: underline dotted;
|
|
|
|
}
|
|
|
|
|
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 23:43:42 -05:00
|
|
|
/* .post-body > p { */
|
|
|
|
/* text-indent: 2ch; */
|
|
|
|
/* } */
|