From f1d835d107f9dd9362963ea225e28d9c41b5fef2 Mon Sep 17 00:00:00 2001 From: Bendik Aagaard Lynghaug Date: Wed, 12 Aug 2026 23:47:14 +0200 Subject: [PATCH] Responsible note as : meta information, dimmer than the description Co-Authored-By: Claude Sonnet 5 --- src/app.rs | 4 ++-- style/main.css | 9 ++++++--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/src/app.rs b/src/app.rs index 0c1730a..f8c91e3 100644 --- a/src/app.rs +++ b/src/app.rs @@ -290,13 +290,13 @@ fn ResponsibleNote(responsible: Responsible) -> impl IntoView { }; view! { -

+ "Asked by " {responsible.name.clone()} " — " "contact them" " if you get stuck." -

+ } } diff --git a/style/main.css b/style/main.css index 64f15af..440e2fe 100644 --- a/style/main.css +++ b/style/main.css @@ -269,12 +269,15 @@ main.not-found { border-bottom-color: var(--accent); } -/* Same hue and size as the hero description it sits under - one line, - reading as part of the question's own text. */ +/* Meta information under the question - same hue family as the + description but dimmer, and smaller: it matters less than what the + question itself says. */ .question-responsible { + display: block; text-align: center; color: var(--ink-dim); - font-size: 1.05rem; + opacity: 0.7; + font-size: 0.85rem; line-height: 1.6; margin: 0.6rem 1rem 1.8rem; }