diff options
author | Katherine Peeters <katherine.peeters@leagueh.xyz> | 2021-09-28 15:39:43 -0700 |
---|---|---|
committer | Katherine Peeters <katherine.peeters@leagueh.xyz> | 2021-09-28 15:39:43 -0700 |
commit | b49c7f90088e2a49be65ef9106daef909632d9d3 (patch) | |
tree | 6d2fde5a9568b30ad84dd995ed1cbcca44ec389d /site | |
parent | afa8bec85bbc48ab42a2841df5de80a2f660aacd (diff) | |
download | loh-website-b49c7f90088e2a49be65ef9106daef909632d9d3.tar.gz |
Updated stylesheet
No graphical changes, but inlined the colour scheme so that certain browsers (eg links) don't throw up
Diffstat (limited to 'site')
-rw-r--r-- | site/style.css | 50 |
1 files changed, 8 insertions, 42 deletions
diff --git a/site/style.css b/site/style.css index c26f13c..1762639 100644 --- a/site/style.css +++ b/site/style.css @@ -1,13 +1,7 @@ -:root { - --background: #282828; - --color: #ebdbb2; - --link: #83a598; -} - html { font-family: sans-serif; - background-color: var(--background); - color: var(--color); + background-color: #282828; + color: #ebdbb2; max-width: 768px; margin: auto; } @@ -39,13 +33,13 @@ table, th, td { } a { - color: var(--link); + color: #83a598; line-height: 1.3; } a:hover { - color: var(--background); - background-color: var(--link); + color: #282828; + background-color: #83a598; } .header { @@ -57,47 +51,19 @@ a:hover { a.header { border-radius: 8px; - background-color: var(--color); + background-color: #ebdbb2; color: transparent; - text-shadow: 0 0 0 var(--background); + text-shadow: 0 0 0 #282828; text-decoration: none; } .footer { - //background-color: #CC9944; - //color: #101010; margin-top: 8px; padding: 1px; text-align: center; } -div.lsand { - border-style: double; - padding: 16px; - word-wrap: break-word; -} - -a.lsand { - text-decoration: none; - color: inherit; -} - -h1.lsand { - margin-top: 0px; - font-size: x-large; -} - -h1.lsand::before { - content: "[lsand] "; -} - -img.lsand { - width: 426; - height: 240; -} - div.lml { - border-left: 2px solid var(--color); + border-left: 2px solid #ebdbb2; padding-left: 8px; } - |