summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--index.gsp34
-rw-r--r--style.css15
2 files changed, 49 insertions, 0 deletions
diff --git a/index.gsp b/index.gsp
index b15f1f5..b311c0a 100644
--- a/index.gsp
+++ b/index.gsp
@@ -98,6 +98,40 @@ html lang="en" {
}
section {
+ h2 {-skills}
+ hr{}
+
+ dl {
+ dt {-Languages}
+ dd {=
+ Awk,
+ C,
+ C#,
+ Go,
+ Python,
+ Rust,
+ Shell Script,
+ SQL,
+ TypeScript/JavaScript,
+ and x64 Assembly.
+ }
+
+ dt {-UNIX}
+ dd {=
+ I am extremely knowledgable about UNIX and UNIX-like systems. I am
+ incredibly comfortable with UNIX tooling and -infrastructure including
+ systems administration and setting up webservers and the like.
+ }
+
+ dt {-Spoken Languages}
+ dd {=
+ I am fluent in English and semi-fluent in Portuguese. I also have a
+ great understanding of Galician.
+ }
+ }
+ }
+
+ section {
h2 {-My Cool Stuff}
hr{}
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;
+ }
+}