diff options
-rw-r--r-- | favicon.ico | bin | 15406 -> 15406 bytes | |||
-rw-r--r-- | index.html | 2 | ||||
-rw-r--r-- | styles.css | 26 |
3 files changed, 23 insertions, 5 deletions
diff --git a/favicon.ico b/favicon.ico Binary files differindex 1a746dd..dbedc98 100644 --- a/favicon.ico +++ b/favicon.ico @@ -10,7 +10,7 @@ <link rel="stylesheet" href="styles.css" /> </head> <body> - <h1>Jacob Janzen's website</h1> + <h1>Jacob Janzen's Website</h1> <p> 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 @@ -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; +} |