From 51e50cd0d66325ae4d84c5d0bf0daba15f9e508b Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Sat, 15 Mar 2025 17:33:40 -0400 Subject: [PATCH] Make about special and style --- db/posts/2.json | 4 ++-- projects/Markdown/About.md | 2 ++ resources/colors.css | 23 +++++++++++++++++++++-- resources/main.css | 15 +++++++++++++++ 4 files changed, 40 insertions(+), 4 deletions(-) diff --git a/db/posts/2.json b/db/posts/2.json index c97b41b..7d0c93b 100644 --- a/db/posts/2.json +++ b/db/posts/2.json @@ -7,7 +7,7 @@ "slugs": [ ], "source": "/home/nathan/Projects/Blog/projects/Markdown/About.md", - "special": false, + "special": true, "tags": [ ] -} \ No newline at end of file +} diff --git a/projects/Markdown/About.md b/projects/Markdown/About.md index 1b76ca4..9bc5c12 100644 --- a/projects/Markdown/About.md +++ b/projects/Markdown/About.md @@ -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. diff --git a/resources/colors.css b/resources/colors.css index 5f67b2c..4b0bf8c 100644 --- a/resources/colors.css +++ b/resources/colors.css @@ -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); diff --git a/resources/main.css b/resources/main.css index 5b70eab..2798174 100644 --- a/resources/main.css +++ b/resources/main.css @@ -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; +}