From 0ff20b1ba213a3ac951360914d0de885b34f9bc0 Mon Sep 17 00:00:00 2001 From: Paul Bakaus Date: Wed, 8 Apr 2026 10:57:55 -0700 Subject: [PATCH] Drop italic cursive from tutorial detail titles The tutorial h1 used font-style: italic + weight 500, which read as cursive and sat oddly next to the non-italic h1 on /skills, /anti-patterns, and skill detail pages. Align it with the shared .sub-page-title treatment: display serif at weight 400, no italic, clamp(2.5rem, 6vw, 4.5rem). The italic style stays on subsection headings (skill category titles, anti-pattern section titles) where it still reads as a label, not a page title. --- public/css/sub-pages.css | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/public/css/sub-pages.css b/public/css/sub-pages.css index 329d03f9e..1630bbaa1 100644 --- a/public/css/sub-pages.css +++ b/public/css/sub-pages.css @@ -938,11 +938,10 @@ main#main { .tutorial-detail-title { font-family: var(--font-display); - font-size: clamp(2.5rem, 5vw, 4rem); - font-weight: 500; - font-style: italic; + font-size: clamp(2.5rem, 6vw, 4.5rem); + font-weight: 400; line-height: 1.05; - letter-spacing: -0.01em; + letter-spacing: -0.02em; color: var(--color-ink); margin-bottom: var(--spacing-md); }