diff options
author | squibid <me@zacharyscheiman.com> | 2023-03-11 12:41:48 -0500 |
---|---|---|
committer | squibid <me@zacharyscheiman.com> | 2023-03-11 12:41:48 -0500 |
commit | 721630bec0f887e1bb2f9c5e7135b560318208c8 (patch) | |
tree | b624f613af81e01d462e9ae400a07a08af95ef47 /style.css | |
parent | 53ba59c39dab56533ec965bfdfc28bd98ab38db0 (diff) | |
download | site-721630bec0f887e1bb2f9c5e7135b560318208c8.tar.gz site-721630bec0f887e1bb2f9c5e7135b560318208c8.tar.bz2 site-721630bec0f887e1bb2f9c5e7135b560318208c8.zip |
rewrite site and stop using iframes
Diffstat (limited to '')
-rw-r--r-- | style.css | 19 |
1 files changed, 10 insertions, 9 deletions
@@ -1,18 +1,15 @@ html, body { - background-color: #A9454A; + background-color: #141414; display: flex; justify-content: center; } .master { - background-color: #141414; - border: 1vw solid #141414; position: absolute; width: 50%; - height: 100vh; } header { text-align: center; - font-size: 1.7vw; + font-size: 3.5vh; } #profile { vertical-align: middle; @@ -22,10 +19,6 @@ header { font-family: sans-serif; color: white; } -#link { - font-family: sans-serif; - color: white; -} #left { float: left; text-align: left; @@ -36,3 +29,11 @@ header { text-align: right; width: 50%; } +a { + font-family: sans-serif; + text-decoration: none; + color: #ED8182; +} +a:hover, a:active { + font-style: italic; +} |