set font and round corners

This commit is contained in:
Nathan McCarty 2025-02-04 04:17:34 -05:00
parent 37238e864b
commit bf56790e3a
4 changed files with 47 additions and 4 deletions

View file

@ -8,6 +8,7 @@ code {
pre > code {
display: block;
padding: 1rem;
border-radius: 0.55rem / 0.5rem;
}
.hl-type {

View file

@ -2,6 +2,7 @@
color-scheme: light dark;
color: light-dark(#474747, #b9b9b9);
background-color: light-dark(#ebebeb, #252525);
font-family: "Open Sans", sans-serif, serif;
}
body {
@ -13,14 +14,30 @@ body {
.post-body {
width: 66%;
display: block;
padding: 1rem;
padding: 3rem;
border-radius: 1rem;
background-color: light-dark(#ffffff, #181818);
}
.post-body > h1 {
text-align: center;
color: light-dark(#dd0f9d, #eb6eb7);
}
.post-body > p {
text-align: justify;
.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;
}