update website

This commit is contained in:
Vivian 2025-05-05 20:23:07 +02:00
parent 5e019cc257
commit bf92a8db9d
3 changed files with 47 additions and 8 deletions

37
books.html Normal file
View file

@ -0,0 +1,37 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Vivian (0x76)'s Book Recommendations</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>💜</text></svg>">
</head>
<body>
<main>
<header>
<h1 aria-label="v | 0x76"></h1>
<p>These are some of my favourite books, in no particular order :)</p>
</header>
<section class="first">
<h3>Fiction</h3>
<ul>
<li>The Name of the Rose, by Umberto Eco</li>
<li>A Hundred Years of Solitude, by Gabriel Garcia Marquez</li>
<li>Collected Fictions, by Jorge Luis Borges</li>
<li>Neuromancer, by William Gibson</li>
<li>House of Leaves, by Mark Z. Danielewski</li>
</ul>
</section>
<section class="second">
<h3>Non-Fiction</h3>
<ul>
<li>Imagined Communities, by Benedict Anderson</li>
<li>Simulacra and Simulation, by Jean Baudrillard</li>
<li>Capitalist Realism, by Mark Fisher</li>
</ul>
</section>
</main>
</body>
</html>

View file

@ -13,13 +13,15 @@
<h1 aria-label="v | 0x76"></h1> <h1 aria-label="v | 0x76"></h1>
<p>Hi I'm Vivian (she/her) and welcome to my website!</p> <p>Hi I'm Vivian (she/her) and welcome to my website!</p>
</header> </header>
<section class="about"> <section class="first">
<h2>Wait who?</h2> <h2>Wait who?</h2>
<p>I am a student at the TU Delft studying <a href="https://cese.ewi.tudelft.nl/">CESE</a>. I also teach some of the courses, specifically the Rust ones.</p> <p>
<p>Besides my study I maintain a NixOS-based homelab, which is definitely more complex than it needs to be..</p> I am a student at the TU Delft studying <a href="https://cese.ewi.tudelft.nl/">CESE</a>. I also teach some of the courses, specifically the Rust ones.
<p>Apart from computers I am also interested in Philosophy &mdash; in which I did my minor &mdash; and I love to read.</p> Besides my study I maintain a NixOS-based homelab, which is definitely more complex than it needs to be...
</p>
Apart from computers I am also interested in Philosophy &mdash; in which I did my minor &mdash; and I love to <a href="./books.html">read</a>.
</section> </section>
<section class="socials"> <section class="socials second">
<h2>Forking Paths</h2> <h2>Forking Paths</h2>
<ul> <ul>
<li><a href="mailto:vivian@0x76.dev">E-Mail</a></li> <li><a href="mailto:vivian@0x76.dev">E-Mail</a></li>

View file

@ -19,6 +19,7 @@ body {
ul { ul {
padding: 0; padding: 0;
list-style-type: none;
} }
li { li {
@ -65,19 +66,18 @@ header {
grid-column: 2; grid-column: 2;
} }
section.about { section.first {
margin-top: 2em; margin-top: 2em;
grid-column: 2; grid-column: 2;
grid-row: 2; grid-row: 2;
} }
section.socials { section.second {
grid-column: 2; grid-column: 2;
grid-row: 3; grid-row: 3;
} }
.socials > ul { .socials > ul {
list-style-type: none;
columns: 2; columns: 2;
} }