From d49f6f33fd07e1919000c6ad79c56b9be9b9b316 Mon Sep 17 00:00:00 2001 From: Roan Horning Date: Sat, 13 Jun 2026 21:24:07 -0400 Subject: [PATCH 1/3] Fix nested list structure --- templates/content-about.tpl.html | 20 ++++++++++---------- templates/content-contribute.tpl.html | 11 ++++++----- 2 files changed, 16 insertions(+), 15 deletions(-) diff --git a/templates/content-about.tpl.html b/templates/content-about.tpl.html index 22d49a9..4c6fd10 100644 --- a/templates/content-about.tpl.html +++ b/templates/content-about.tpl.html @@ -1,24 +1,24 @@

Welcome to HPR.

- +
diff --git a/templates/content-contribute.tpl.html b/templates/content-contribute.tpl.html index 0410978..894d550 100644 --- a/templates/content-contribute.tpl.html +++ b/templates/content-contribute.tpl.html @@ -1,18 +1,19 @@ - - + +
-- 2.52.0 From f70a8b17795d820c3485b8086690a60b8e788c8b Mon Sep 17 00:00:00 2001 From: Roan Horning Date: Sat, 13 Jun 2026 21:56:11 -0400 Subject: [PATCH 2/3] Use horizontal layout for page navigation links --- public_html/css/hpr.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/public_html/css/hpr.css b/public_html/css/hpr.css index 017aa42..ac14a18 100644 --- a/public_html/css/hpr.css +++ b/public_html/css/hpr.css @@ -766,6 +766,11 @@ fieldset > table td input[type="radio"] { border: 1px solid #ddd; padding: 0.1em 0; } +nav > ul > li::marker { + content: "✽ "; + font-size: 1.05rem; + color: var(--background-secondary); +} nav.episodes { color: var(--background-primary); font-size: 0.9em; @@ -913,6 +918,17 @@ nav.episodes span a:hover svg #bar { #host { gap: 2rem; } + nav > ul { + display: flex; + flex-direction: row; + justify-content: space-between; + flex-flow: wrap; + gap: 0.5rem 1rem; + } + nav > ul > li { + flex: 1 0 max-content; + max-width: 50%; + } nav.episodes { display: inline-block; } -- 2.52.0 From 41eeacd5d8f4cd00a84da8b706c1c2acbcd77647 Mon Sep 17 00:00:00 2001 From: Roan Horning Date: Sat, 20 Jun 2026 20:46:00 -0400 Subject: [PATCH 3/3] Clean up layout of details content --- public_html/css/hpr.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/public_html/css/hpr.css b/public_html/css/hpr.css index ac14a18..3fbb6ee 100644 --- a/public_html/css/hpr.css +++ b/public_html/css/hpr.css @@ -822,6 +822,17 @@ nav.episodes span a:hover svg #bar { stroke: var(--link-secondary-hover); fill: var(--link-secondary-hover); } +details[open] > * { + margin-left: 1.35rem; + padding-right: 1.35rem; +} +details[open] > summary { + margin-left: 0; + padding-right: 0; +} +details > summary:hover { + cursor: pointer; +} @media (min-width: 600px) { body > header .bounding-box { justify-content: space-between; -- 2.52.0