From d160920be70af632f3262e269b58b4dadab3fde4 Mon Sep 17 00:00:00 2001 From: Anson Date: Tue, 8 Nov 2022 17:45:14 -0500 Subject: [PATCH] made text easier to read --- index.html | 15 ++++++++++----- style.css | 35 ++++++++++++++++++++++++++++++++++- 2 files changed, 44 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index 907bf15..4f30b40 100644 --- a/index.html +++ b/index.html @@ -39,12 +39,17 @@

To see what I'm currently working on, check out my Gitlab or my - Projects Website. You can - reach me on Telegram, + Projects Website. +

+

+ You can reach me on + Telegram, Twitter, - Mastodon or by - Email. If you're really - curious you check out my Resume. + Mastodon or at + anson@ansonbiggs.com. +

+

+ If you're really curious you check out my Resume.

diff --git a/style.css b/style.css index 96c1853..29b53a3 100644 --- a/style.css +++ b/style.css @@ -5,4 +5,37 @@ body { padding-left: 15vw; padding-right: 15vw; /* padding-bottom: 5em; */ - } \ No newline at end of file + } + +p { + line-height: 1.4; +} + +a { + outline: none; + text-decoration: none; + padding: 2px 1px 0; +} + +a:link { + color: #70e2f1; +} + +a:visited { + color: #0db0c5; +} + +a:focus { + border-bottom: 1px solid; + background: #bae498; +} + +a:hover { + border-bottom: 1px solid; + background: #1984fd; +} + +a:active { + background: #0004ff; + color: #70e2f1; +} \ No newline at end of file