From b820915e7ac74b64cca81ce8a1a6ca3de4408034 Mon Sep 17 00:00:00 2001 From: juanatsap Date: Fri, 7 Nov 2025 20:38:05 +0000 Subject: [PATCH] fix: move separator to BELOW section titles instead of above - Changed from border-top on section to border-bottom on section-title - Separator now appears under the title text (Experiencia, Awards, Courses) - Added padding-bottom: 15px for space between title and separator - Added margin-bottom: 20px for space between separator and content - This matches the green arrow position in the screenshot --- static/css/main.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/static/css/main.css b/static/css/main.css index c56a1e3..1330311 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -1613,13 +1613,13 @@ a:focus { color: #7d7d7d; } -/* Add top border separator to specific sections */ -#experience, -#awards, -#courses { - border-top: 1px solid rgba(0, 0, 0, 0.1); - padding-top: 5px; - margin-top: 20px; +/* Add separator below section titles */ +#experience .section-title, +#awards .section-title, +#courses .section-title { + border-bottom: 1px solid rgba(0, 0, 0, 0.1); + padding-bottom: 15px; + margin-bottom: 20px; } /* Smooth scrolling */