diff options
author | Jacob Janzen <jjanzenn@proton.me> | 2024-04-27 16:17:44 -0500 |
---|---|---|
committer | Jacob Janzen <jjanzenn@proton.me> | 2024-04-27 16:17:44 -0500 |
commit | cd739b87f411f1980bf6ceb98becd0cffdd50437 (patch) | |
tree | e6d1323cd7471f286d7de27e6330fc2d9014edab /css/stylesheet.css | |
parent | 5e44b2bbc338f62e5574248f3035d71d98d96cec (diff) |
add absolute positioning of the footer
Diffstat (limited to 'css/stylesheet.css')
-rw-r--r-- | css/stylesheet.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/css/stylesheet.css b/css/stylesheet.css index 9ff8884..11727a4 100644 --- a/css/stylesheet.css +++ b/css/stylesheet.css @@ -56,12 +56,18 @@ a:hover { } } +.content { + padding-bottom: 30px; +} + .footer { + position: absolute; background-color: #fff8ea; bottom: 0; margin-top: auto; width: 700px; max-width: calc(100% - 20px); + height: 30px; text-align: center; display: flex; justify-content: space-between; |