summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2026-02-05 16:42:41 -0500
committerSam Anthony <sam@samanthony.xyz>2026-02-05 16:42:41 -0500
commit2f9adc47529516868e46044f598bd744a858c3a3 (patch)
tree5d3ec9f34968e834ffcc532abaf49ff178205314
parente3064f9497acac1f2ea11893859d2287df50db16 (diff)
downloadresume-2f9adc47529516868e46044f598bd744a858c3a3.zip
highlight degree and gpa; remove deans list years
-rw-r--r--resume.html6
-rw-r--r--style.css20
2 files changed, 23 insertions, 3 deletions
diff --git a/resume.html b/resume.html
index e74228d..64d0682 100644
--- a/resume.html
+++ b/resume.html
@@ -39,9 +39,9 @@
<div class="columns-2">
<div></div>
<div><ul>
- <li>Bachelor of Computer Science.</li>
- <li>GPA: 4.02 out of 4.30.</li>
- <li>Dean's list, 2024 &amp; 2025.</li>
+ <li><b class="text">Bachelor of Computer Science.</b></li>
+ <li><b class="text">GPA: 4.02</b> out of 4.30.</li>
+ <li>Dean's list.</li>
</ul></div>
</div>
</div>
diff --git a/style.css b/style.css
index e9345e8..a6e4cca 100644
--- a/style.css
+++ b/style.css
@@ -162,3 +162,23 @@ sup { /* keep line height consistent */
.url {
letter-spacing: .05em;
}
+
+.regular {
+ font-weight: var(--regular-weight);
+}
+
+.text {
+ font-weight: var(--text-weight);
+}
+
+.medium {
+ font-weight: var(--medium-weight);
+}
+
+.semibold {
+ font-weight: var(--semibold-weight);
+}
+
+.bold, b {
+ font-weight: var(--bold-weight);
+}