diff options
author | Runxi Yu <me@runxiyu.org> | 2025-02-10 21:49:06 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-02-10 21:49:06 +0800 |
commit | 6285ebff7e53657b2ca3b7cfa726e2fef524f0ce (patch) | |
tree | a25d943325326f4ad818fb0681a8eb3e871062bf /static/style.css | |
parent | main: Prefix group names with /g/ (diff) | |
download | forge-6285ebff7e53657b2ca3b7cfa726e2fef524f0ce.tar.gz forge-6285ebff7e53657b2ca3b7cfa726e2fef524f0ce.tar.zst forge-6285ebff7e53657b2ca3b7cfa726e2fef524f0ce.zip |
footer.html: Add link to Lindenii Forge
Diffstat (limited to '')
-rw-r--r-- | static/style.css | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/static/style.css b/static/style.css index 4fe07ef..8116b0a 100644 --- a/static/style.css +++ b/static/style.css @@ -1,6 +1,7 @@ html { font-family: sans-serif; --link-color: hsl(320, 50%, 36%); + --light-text-color: hsl(0, 0%, 65%); --darker-border-color: hsl(0, 0%, 72%); --lighter-border-color: hsl(0, 0%, 85%); --text-decoration-color: hsl(0, 0%, 72%); @@ -10,11 +11,23 @@ html { html, code, pre { font-size: 1rem; /* TODO: Not always correct */ } - -.padding-wrapper { +footer { + margin-top: 1rem; + margin-left: auto; + margin-right: auto; + display: block; padding: 0 1rem; - max-width: 50em; + width: fit-content; + text-align: center; + color: var(--light-text-color); +} +footer a:link, footer a:visited { + color: inherit; +} +.padding-wrapper { margin: 1rem auto; + max-width: 50em; + padding: 0 1rem; } .padding-wrapper > * { width: 100%; |