diff options
author | Pjotr Prins | 2024-06-23 04:12:40 -0500 |
---|---|---|
committer | Pjotr Prins | 2024-06-23 04:31:22 -0500 |
commit | 3f1cdf10c4b986d0ac9b0d0eaf4cc0312eeba063 (patch) | |
tree | a8572d36e493b0cca9937bf155375ae057ffff7f /static | |
parent | 8d87f4db24ca5a36897fbd454527cbf54aff40cd (diff) | |
download | genecup-3f1cdf10c4b986d0ac9b0d0eaf4cc0312eeba063.tar.gz |
Working footer - but still overlapping body
Diffstat (limited to 'static')
-rw-r--r-- | static/style.css | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css index d4cc2ee..47b0e22 100644 --- a/static/style.css +++ b/static/style.css @@ -72,3 +72,36 @@ a:active { ul { margin-left:40px; } + +.main { + flex: 1; + padding: 30px 0; +} + +body +{ + display: flex; + min-height: 80vh; + flex-direction: column; + padding-bottom: 40px; +} + +footer { + color: white; + font-size: small; + padding: 3px 0; + position: absolute; + left: 0; + bottom: 0; + width: 100%; +} + +.footer a { + color: yellow; + text-decoration: none; + transition: color 0.3s ease; +} + +.footer a:hover { + color: #adb5bd; +} |