Make about special and style

This commit is contained in:
Nathan McCarty 2025-03-15 17:33:40 -04:00
parent 5ced2f6298
commit 51e50cd0d6
4 changed files with 40 additions and 4 deletions

View file

@ -69,9 +69,20 @@ a:visited {
.post-title, .post-blurbs h1, .series-header h1, .series-list h1 {
color: var(--green);
}
.post-body h2, .post-body h3, .post-body h4 {
color: var(--fg-1);
.post-body h2 {
color: var(--red);
background-color: var(--bg-1);
}
.post-body h3 {
color: var(--blue);
}
.post-body h4 {
color: var(--violet);
}
.post-info > *, .series-info > *, .header-links > * {
background-color: var(--bg-2);
}
@ -101,6 +112,14 @@ footer > div {
background-color: var(--bg-2);
}
/* Formatting for special pages */
.special-post h2 {
color: var(--green);
}
.special-post h3 {
color: var(--red);
}
/* Colorization for idris code blocks */
code {
color: var(--code-fg-0);