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
This commit is contained in:
juanatsap
2025-11-07 20:38:05 +00:00
parent 891db43354
commit b820915e7a
+7 -7
View File
@@ -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 */