diff options
author | Katherine Peeters <katherine.peeters@leagueh.xyz> | 2021-03-27 23:29:08 -0400 |
---|---|---|
committer | Katherine Peeters <katherine.peeters@leagueh.xyz> | 2021-03-27 23:29:08 -0400 |
commit | b49fed8bf28fa324debfa97fccda03fb34cacf48 (patch) | |
tree | 7eaf7a9ca9bc01b12235983de2c42d360d76f73c /site | |
parent | f2a22a4984a28a12c6125a8efb64b9d872e5670b (diff) | |
download | loh-website-b49fed8bf28fa324debfa97fccda03fb34cacf48.tar.gz |
Fixed stylesheet
Diffstat (limited to 'site')
-rw-r--r-- | site/style.css | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/site/style.css b/site/style.css new file mode 100644 index 0000000..ab94ce4 --- /dev/null +++ b/site/style.css @@ -0,0 +1,97 @@ +:root { + --background: #101010; + --color: #CC9944; + --link: #CC5500; + //--color: #449944; + //--link: #994444; +} + +html { + font-family: monospace; + font-size: large; + background-color: var(--background); + color: var(--color); + max-width: 768px; + margin: auto; +} + +.content { + padding: 16px; + border-style: double; +} + +h1::before { + content: "$ "; +} + +code { + border-radius: 2px; + background-color: #303030; + padding: 2px; +} + +table, th, td { + border: 1px solid; + border-collapse: collapse; + padding: 8px; +} + +a { + color: var(--link); +} + +a:hover { + background-color: #303030; +} + +li { + list-style: "* "; +} + +.header { + font-size: xx-large; + text-align: center; + margin: 16px; + padding: 8px; +} + +a.header { + border-radius: 8px; + background-color: var(--color); + color: transparent; + text-shadow: 0 0 0 var(--background); + 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; +} |