summaryrefslogtreecommitdiffhomepage
path: root/style.css
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-09-18 23:31:26 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-09-18 23:31:26 +0200
commitf1eb42b26988b5460560ee9c0c04fb5d1d6298e7 (patch)
tree0c028b8afbea6b3d5b9113b7b6f5cdd5b33300bb /style.css
parent27403be0e71fe8a68d8ff55d9c1d809fad4e1330 (diff)
Add a skills section
Diffstat (limited to 'style.css')
-rw-r--r--style.css15
1 files changed, 15 insertions, 0 deletions
diff --git a/style.css b/style.css
index 31d40dc..d91690e 100644
--- a/style.css
+++ b/style.css
@@ -55,3 +55,18 @@ x-entry > p {
section > x-entry:not(:last-child) {
margin-bottom: 1rem;
}
+
+dl {
+ display: grid;
+ grid-template-columns: max-content auto;
+ row-gap: 1rem;
+
+ dt {
+ grid-column-start: 1;
+ font-weight: bold;
+ }
+
+ dd {
+ grid-column-start: 2;
+ }
+}