Fix text alignment and add basic styling for block quotes

This commit is contained in:
Nathan McCarty 2025-02-06 20:09:01 -05:00
parent 14adc9fdf7
commit d7469399ef
2 changed files with 11 additions and 0 deletions

View file

@ -65,6 +65,10 @@ a:visited {
.post-body > h3, .post-body > h3, .post-body > h4 {
color: var(--fg-1);
}
blockquote {
background-color: var(--bg-1);
color: var(--fg-1);
}
/* Colorization for code blocks */
code {

View file

@ -77,6 +77,7 @@ body, .post {
}
.post-body > p {
margin: auto var(--box-margin-horz);
align-self: stretch;
}
.post-title > h1 {
margin-top: 0px;
@ -116,3 +117,9 @@ body, .post {
flex-direction: column;
box-sizing: border-box;
}
/* TODO: Nice fancy blockquotes */
blockquote {
border-radius: var(--box-radius);
padding: var(--box-padding-vert) var(--box-padding-horz);
}