From 8d737fe280dd4ddaf5ccf84cecf25abf1aa0a115 Mon Sep 17 00:00:00 2001 From: Drew Haven Date: Fri, 1 May 2026 20:51:40 -0700 Subject: [PATCH] Reduce header size --- src/styles/global.css | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/styles/global.css b/src/styles/global.css index 32c4453..b72cc0f 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -17,12 +17,11 @@ --background-light: var(--color-space-blue-light); --font-size-sm: calc(var(--font-size-md) / 1.2); - --font-size-md: 20px; + --font-size-md: 18px; --font-size-lg: calc(var(--font-size-md) * 1.2); --font-size-xl: calc(var(--font-size-lg) * 1.2); --font-size-2xl: calc(var(--font-size-xl) * 1.2); --font-size-3xl: calc(var(--font-size-2xl) * 1.2); - --font-size-4xl: calc(var(--font-size-3xl) * 1.2); --width-full: 1000px; --width-narrow: 800px; @@ -128,19 +127,21 @@ h6 { } /* Progressive 1.2x scaling from the base */ h1 { - font-size: var(--font-size-4xl); -} -h2 { font-size: var(--font-size-3xl); } -h3 { +h2 { font-size: var(--font-size-2xl); } -h4 { +h3 { font-size: var(--font-size-xl); } +h4 { + font-size: var(--font-size-lg); + font-weight: bold; +} h5 { font-size: var(--font-size-lg); + font-style: italic; } strong, b {