From 5e019cc257d4cd9215793133659614d537ef3bf7 Mon Sep 17 00:00:00 2001 From: Vivian Date: Tue, 4 Feb 2025 10:23:42 +0100 Subject: [PATCH] overhaul --- index.html | 15 +++++++++++---- style.css | 25 ++++++++++++++++++------- 2 files changed, 29 insertions(+), 11 deletions(-) diff --git a/index.html b/index.html index 57f1f44..95e2687 100644 --- a/index.html +++ b/index.html @@ -10,15 +10,22 @@
-

-

Hi i'm Vivian (she/her) and welcome to my website!

+

+

Hi I'm Vivian (she/her) and welcome to my website!

+
+

Wait who?

+

I am a student at the TU Delft studying CESE. I also teach some of the courses, specifically the Rust ones.

+

Besides my study I maintain a NixOS-based homelab, which is definitely more complex than it needs to be..

+

Apart from computers I am also interested in Philosophy — in which I did my minor — and I love to read.

+
+

Forking Paths

diff --git a/style.css b/style.css index a7d17ad..452a462 100644 --- a/style.css +++ b/style.css @@ -12,7 +12,8 @@ src: url(./fonts/MPLUSCodeLatin-Regular.ttf); } -html, body { +html, +body { height: 100%; } @@ -34,7 +35,9 @@ body { text-align: center; } -h1, h2, h3 { +h1, +h2, +h3 { color: var(--violet); font-family: "Major Mono Display", monospace; } @@ -43,7 +46,8 @@ h1 { font-size: 8rem; } -a:link, a:visited { +a:link, +a:visited { color: inherit; } @@ -57,10 +61,16 @@ main { } header { - /* grid-row: 1; */ + grid-row: 1; grid-column: 2; } +section.about { + margin-top: 2em; + grid-column: 2; + grid-row: 2; +} + section.socials { grid-column: 2; grid-row: 3; @@ -68,16 +78,17 @@ section.socials { .socials > ul { list-style-type: none; + columns: 2; } -header > h1 { +header>h1 { color: var(--violet); } -header > h1::before { +header>h1::before { content: "0x76"; } -header > h1:hover::before { +header>h1:hover::before { content: "v"; }