From 6179a417d71e115cdcfa71be5e3e15e8fb09fb13 Mon Sep 17 00:00:00 2001 From: "Henner M. Kruse" Date: Thu, 13 Aug 2026 17:47:59 +0000 Subject: [PATCH] Even out the gap above/below the About-me social-links divider Was 8rem above / 3rem below; both now 5rem. --- static/css/site.css | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/static/css/site.css b/static/css/site.css index a21c18f..92f7458 100644 --- a/static/css/site.css +++ b/static/css/site.css @@ -426,12 +426,10 @@ ul.social-links { height: 1.25rem; } -/* About-me page variant: bigger icons, distinct gap from the text above. - Spacing to the preceding text is handled by .social-links-divider's - own margins, so this only needs the gap from divider to icons. +/* About-me page variant: bigger icons, even gap above/below the divider. "ul.social-links--large" for the same specificity reason as above. */ ul.social-links--large { - margin-top: 3rem; + margin-top: 5rem; gap: 1.5rem; } @@ -444,7 +442,7 @@ ul.social-links--large { border: none; border-top: 1px solid var(--table-border-color); width: 4rem; - margin: 8rem auto 0 auto; + margin: 5rem auto 0 auto; }