summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);
+}