From 6a4680a1f91458cef82c38d58e26ef85afd17f8a Mon Sep 17 00:00:00 2001 From: Mark Daugherty Date: Wed, 27 May 2026 09:04:08 -0500 Subject: [PATCH 01/14] feat: add viewport border frame and first heading padding Co-Authored-By: Claude Sonnet 4.6 --- styles/styles.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/styles/styles.css b/styles/styles.css index 9da4705..e2a8c82 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -76,6 +76,15 @@ body.appear { display: block; } +body::before { + content: ''; + position: fixed; + inset: 0; + border: 8px solid black; + pointer-events: none; + z-index: 9999; +} + footer .footer { visibility: hidden; } @@ -99,6 +108,10 @@ h6 { } h1 { font-size: var(--heading-font-size-xxl); } + +main > .section:first-of-type :is(h1, h2, h3, h4, h5, h6):first-child { + padding-top: 1em; +} h2 { font-size: var(--heading-font-size-xl); } h3 { font-size: var(--heading-font-size-l); margin-bottom: 0.8em; } h4 { font-size: var(--heading-font-size-m); } From b561010511748a46d910b94e8b88fda8aa7c93a9 Mon Sep 17 00:00:00 2001 From: Mark Daugherty Date: Wed, 27 May 2026 09:08:46 -0500 Subject: [PATCH 02/14] fix: resolve stylelint errors in styles.css Co-Authored-By: Claude Sonnet 4.6 --- styles/styles.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/styles/styles.css b/styles/styles.css index e2a8c82..1907922 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -113,7 +113,11 @@ main > .section:first-of-type :is(h1, h2, h3, h4, h5, h6):first-child { padding-top: 1em; } h2 { font-size: var(--heading-font-size-xl); } -h3 { font-size: var(--heading-font-size-l); margin-bottom: 0.8em; } + +h3 { + font-size: var(--heading-font-size-l); + margin-bottom: 0.8em; +} h4 { font-size: var(--heading-font-size-m); } h5 { font-size: var(--heading-font-size-s); } h6 { font-size: var(--heading-font-size-xs); } From 22ed19a7390eed7a9b23f00d5f9f9ed6103c953b Mon Sep 17 00:00:00 2001 From: Mark Daugherty Date: Wed, 27 May 2026 09:23:13 -0500 Subject: [PATCH 03/14] chore: trigger code sync Co-Authored-By: Claude Sonnet 4.6 --- scripts/scripts.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/scripts.js b/scripts/scripts.js index 621724d..cd4b402 100644 --- a/scripts/scripts.js +++ b/scripts/scripts.js @@ -198,3 +198,4 @@ async function loadPage() { } loadPage(); + From f211d86b582be51d7c0cf7ab58b82c0856080d00 Mon Sep 17 00:00:00 2001 From: Mark Daugherty Date: Wed, 27 May 2026 09:24:46 -0500 Subject: [PATCH 04/14] chore: trigger code sync Co-Authored-By: Claude Sonnet 4.6 --- scripts/scripts.js | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/scripts.js b/scripts/scripts.js index cd4b402..621724d 100644 --- a/scripts/scripts.js +++ b/scripts/scripts.js @@ -198,4 +198,3 @@ async function loadPage() { } loadPage(); - From 5de2551f58a2bfcc22219750a3044630a2803507 Mon Sep 17 00:00:00 2001 From: Mark Daugherty Date: Wed, 27 May 2026 09:42:31 -0500 Subject: [PATCH 05/14] chore: trigger code sync Co-Authored-By: Claude Sonnet 4.6 --- scripts/scripts.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/scripts.js b/scripts/scripts.js index 621724d..cd4b402 100644 --- a/scripts/scripts.js +++ b/scripts/scripts.js @@ -198,3 +198,4 @@ async function loadPage() { } loadPage(); + From d30efe5b49a6a1f931ae27ee0ab7eb9f18ca1c28 Mon Sep 17 00:00:00 2001 From: Mark Daugherty Date: Wed, 27 May 2026 09:47:58 -0500 Subject: [PATCH 06/14] chore: trigger code sync Co-Authored-By: Claude Sonnet 4.6 --- scripts/scripts.js | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/scripts.js b/scripts/scripts.js index cd4b402..621724d 100644 --- a/scripts/scripts.js +++ b/scripts/scripts.js @@ -198,4 +198,3 @@ async function loadPage() { } loadPage(); - From 134a9cd0362ea4b81d2db1053a7893d841e68692 Mon Sep 17 00:00:00 2001 From: Mark Daugherty Date: Wed, 27 May 2026 09:54:32 -0500 Subject: [PATCH 07/14] Change background color from white to black --- styles/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/styles.css b/styles/styles.css index 1907922..ee37287 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -12,7 +12,7 @@ :root { /* colors */ - --background-color: white; + --background-color: black; --light-color: #f8f8f8; --dark-color: #505050; --text-color: #131313; From 9c9f34a6ed7717fb972c9427d417933e961a6920 Mon Sep 17 00:00:00 2001 From: Mark Daugherty Date: Wed, 27 May 2026 10:13:30 -0500 Subject: [PATCH 08/14] Change background color from black to white --- styles/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/styles.css b/styles/styles.css index ee37287..1907922 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -12,7 +12,7 @@ :root { /* colors */ - --background-color: black; + --background-color: white; --light-color: #f8f8f8; --dark-color: #505050; --text-color: #131313; From ea10d60dc9e2614a72a82da627843f05d015fd06 Mon Sep 17 00:00:00 2001 From: Mark Daugherty Date: Wed, 27 May 2026 10:58:12 -0500 Subject: [PATCH 09/14] Change background color from white to black --- styles/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/styles.css b/styles/styles.css index 1907922..ee37287 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -12,7 +12,7 @@ :root { /* colors */ - --background-color: white; + --background-color: black; --light-color: #f8f8f8; --dark-color: #505050; --text-color: #131313; From 27e7997517a1ebed3187f3ec26056ac863421935 Mon Sep 17 00:00:00 2001 From: Mark Daugherty Date: Wed, 27 May 2026 11:22:29 -0500 Subject: [PATCH 10/14] Change background color from black to white --- styles/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/styles.css b/styles/styles.css index ee37287..1907922 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -12,7 +12,7 @@ :root { /* colors */ - --background-color: black; + --background-color: white; --light-color: #f8f8f8; --dark-color: #505050; --text-color: #131313; From 5a99f112e13a6da83b88fb795312be4612702772 Mon Sep 17 00:00:00 2001 From: Mark Daugherty Date: Wed, 27 May 2026 11:29:45 -0500 Subject: [PATCH 11/14] Change background color from white to black --- styles/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/styles.css b/styles/styles.css index 1907922..ee37287 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -12,7 +12,7 @@ :root { /* colors */ - --background-color: white; + --background-color: black; --light-color: #f8f8f8; --dark-color: #505050; --text-color: #131313; From bd434e280b8458b8bee9642990821887abe796b2 Mon Sep 17 00:00:00 2001 From: Mark Daugherty Date: Wed, 27 May 2026 11:31:25 -0500 Subject: [PATCH 12/14] Change background color from black to white --- styles/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/styles.css b/styles/styles.css index ee37287..1907922 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -12,7 +12,7 @@ :root { /* colors */ - --background-color: black; + --background-color: white; --light-color: #f8f8f8; --dark-color: #505050; --text-color: #131313; From 698e52ff37c759418a0ba0d995eefecf31fd93ce Mon Sep 17 00:00:00 2001 From: Mark Daugherty Date: Wed, 27 May 2026 11:36:05 -0500 Subject: [PATCH 13/14] Update styles.css --- styles/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/styles.css b/styles/styles.css index 1907922..ee37287 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -12,7 +12,7 @@ :root { /* colors */ - --background-color: white; + --background-color: black; --light-color: #f8f8f8; --dark-color: #505050; --text-color: #131313; From 66df7d4eaf02d202d4c891154e96efde5a4abf62 Mon Sep 17 00:00:00 2001 From: Mark Daugherty Date: Wed, 27 May 2026 14:31:45 -0500 Subject: [PATCH 14/14] Change background color from black to white --- styles/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/styles.css b/styles/styles.css index ee37287..1907922 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -12,7 +12,7 @@ :root { /* colors */ - --background-color: black; + --background-color: white; --light-color: #f8f8f8; --dark-color: #505050; --text-color: #131313;