From b68ae32770517967fe88d6eb6cfaa7315b0bf664 Mon Sep 17 00:00:00 2001 From: juanatsap Date: Fri, 7 Nov 2025 18:28:11 +0000 Subject: [PATCH] feat: add checkmarks to Languages, References, and Other sections to match old CV --- static/css/main.css | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/static/css/main.css b/static/css/main.css index c940fde..597e498 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -1341,6 +1341,14 @@ a:focus { color: var(--text-dark); } +/* Add checkmarks before language items */ +.language-item::before { + content: "✓ "; + color: var(--text-dark); + font-weight: bold; + margin-right: 0.3em; +} + .award-item small, .course-item small { color: #666; @@ -1358,6 +1366,14 @@ a:focus { margin-bottom: 0.5em; } +/* Add checkmarks before reference items */ +.reference-item::before { + content: "✓ "; + color: var(--accent-blue); + font-weight: bold; + margin-right: 0.3em; +} + .reference-item a { font-weight: 500; } @@ -1368,6 +1384,14 @@ a:focus { font-size: 0.875em; } +/* Add checkmark before other content */ +.other-content::before { + content: "✓ "; + color: var(--text-dark); + font-weight: bold; + margin-right: 0.3em; +} + /* =============================================== MOBILE RESPONSIVE - TWO-PAGE LAYOUT =============================================== */