From 5883b7e679cd479885823f6463a9670c49809c03 Mon Sep 17 00:00:00 2001 From: Roan Horning Date: Sat, 11 Jul 2026 18:57:38 -0400 Subject: [PATCH] Differenciate article header h1 and body h2 font-size --- public_html/css/hpr.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/public_html/css/hpr.css b/public_html/css/hpr.css index 3fbb6ee..cdad220 100644 --- a/public_html/css/hpr.css +++ b/public_html/css/hpr.css @@ -87,9 +87,11 @@ https://creativecommons.org/publicdomain/ --default-header-x-font-weight: bold; --default-header-x-margin: 1.25rem 0 0.75rem 0; --default-header-1-font-size: 1.5rem; - --default-header-2-font-size: 1.45rem; + --default-header-2-font-size: 1.40rem; --default-header-3-font-size: 1.25rem; --default-header-4-font-size: 1.15rem; + + --article-header-1-font-size: 1.45rem; } html { @@ -245,6 +247,10 @@ article * h3 { margin: var(--default-header-x-margin); } +article > header > h1 { + font-size: var(--article-header-1-font-size); +} + img { max-width: 100%; height: auto; -- 2.52.0