From 2f0090b5bf38664fd0033c92ac3ef6ea3608a7dd Mon Sep 17 00:00:00 2001 From: Jacob Janzen Date: Sun, 17 Mar 2024 19:33:48 -0500 Subject: pretty --- favicon.ico | Bin 15406 -> 15406 bytes index.html | 2 +- styles.css | 26 ++++++++++++++++++++++---- 3 files changed, 23 insertions(+), 5 deletions(-) diff --git a/favicon.ico b/favicon.ico index 1a746dd..dbedc98 100644 Binary files a/favicon.ico and b/favicon.ico differ diff --git a/index.html b/index.html index 3b674a1..59d6c9b 100644 --- a/index.html +++ b/index.html @@ -10,7 +10,7 @@ -

Jacob Janzen's website

+

Jacob Janzen's Website

This website is designed to be as minimal as possible. It's written in HTML with minimal CSS and JavaScript where needed. There are no frameworks diff --git a/styles.css b/styles.css index 3652b41..4d78bb1 100644 --- a/styles.css +++ b/styles.css @@ -2,12 +2,30 @@ box-sizing: border-box; } +h1, +h2, +h3, +h4, +h5, +h6 { + color: #815b5b; +} + body { - font-family: - Courier New, - Courier, - Monospace; + font-family: Georgia, Courier, Monospace; + font-size: 20px; + background-color: #fff8ea; + color: #594545; width: 700px; max-width: calc(100% - 20px); margin: auto; } + +a { + color: darkblue; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} -- cgit v1.2.3