diff options
| author | James Mills <prologic@shortcircuit.net.au> | 2020-03-26 01:01:35 +1000 |
|---|---|---|
| committer | James Mills <prologic@shortcircuit.net.au> | 2020-03-26 01:01:35 +1000 |
| commit | 7fa7a38167415301a9a01735d2eb354542c11dcb (patch) | |
| tree | 0389042f505c36a32ad9f9cbd2ed71e74f34f77f /static | |
| parent | bcd79ba2c55de3202f1e9b4b9b6070b36cfdb7db (diff) | |
Add a footer
Diffstat (limited to 'static')
| -rw-r--r-- | static/theme.css | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/static/theme.css b/static/theme.css index bdafeea..e65094b 100644 --- a/static/theme.css +++ b/static/theme.css @@ -462,3 +462,31 @@ label span input { } */ } + +footer { + position: fixed; + left: 0; + bottom: 0; + width: 100%; + background: #1e1e1e; + color: white; + text-align: center; +} + +footer p { + font-size: 8px; +} + +footer p a { + color: #fff; +} + +footer p a { + text-decoration: underline; + color: #fff; + transition: .3s background-color; +} + +footer p a:hover { + background-color: #005f5f; +} |
