From e0712bb78ca907f2c9217e9bd9dee89ec4e26ac4 Mon Sep 17 00:00:00 2001 From: juanatsap Date: Sun, 9 Nov 2025 02:49:40 +0000 Subject: [PATCH] fix: align award items with other sections and fix separator styling - Remove margin-left from award-item to align with experience/courses/projects - Change border from 2px solid #ddd to 1px solid rgba(0,0,0,0.1) for consistency - Awards section now matches the layout and spacing of other sections --- static/css/main.css | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/static/css/main.css b/static/css/main.css index 73bb25b..164d439 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -1507,8 +1507,6 @@ a:focus { SECTION STYLES FOR PAGE 2 =============================================== */ -.award-item, -.course-item, .language-item, .reference-item, .other-content { @@ -1525,7 +1523,7 @@ a:focus { align-items: flex-start; margin-bottom: 2.5rem; padding-bottom: 2rem; - border-bottom: 2px solid #ddd; + border-bottom: 1px solid rgba(0, 0, 0, 0.1); page-break-inside: avoid; transition: gap 0.3s ease-in-out; }