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

@ -7,7 +7,7 @@
"slugs": [
],
"source": "/home/nathan/Projects/Blog/projects/Markdown/About.md",
"special": false,
"special": true,
"tags": [
]
}
}

View file

@ -1,5 +1,7 @@
# About Me
## About Me
My name is Nathan, I'm an engineering psychologist by training, and a systems
engineer by trade.

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);

View file

@ -128,6 +128,13 @@ body, .post, .series {
.post-body h2, .post-body h3, .post-body h4 {
text-align: center;
}
.post-body h2 {
padding: var(--box-margin-vert) var(--box-margin-horz);
border-radius: var(--box-radius);
width: 100%;
}
.post-blurbs, .series-blurbs, .series-list {
display: flex;
flex-direction: column;
@ -261,3 +268,11 @@ footer i {
border-radius: 0.25rem;
padding: var(--footer-padding);
}
/* Formatting for special pages */
.special-post h2 {
font-size: 2rem;
}
.special-post h3 {
font-size: 1.5rem;
}