From 5a504c805e6e941d3fd5ee7d7d00bd2239d3c794 Mon Sep 17 00:00:00 2001 From: juanatsap Date: Fri, 7 Nov 2025 20:55:39 +0000 Subject: [PATCH] fix: add invisible separator below section titles, not on entire section - Removed padding-top from section containers - Increased margin-bottom on section titles from 25px to 40px - Creates blank space between title and content, not before title - Only affects Experience, Awards, and Courses sections --- static/css/main.css | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/static/css/main.css b/static/css/main.css index 292e625..8e7e383 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -1613,17 +1613,11 @@ a:focus { color: #7d7d7d; } -/* Add invisible separator (blank space) before specific sections */ -#experience, -#awards, -#courses { - padding-top: 60px !important; -} - +/* Add invisible separator (blank space) below section titles */ #experience .section-title, #awards .section-title, #courses .section-title { - margin-bottom: 25px; + margin-bottom: 40px !important; } /* Smooth scrolling */