diff options
author | 2018-03-21 22:11:57 +0100 | |
---|---|---|
committer | 2018-03-21 22:11:57 +0100 | |
commit | c8fbfba58c52628925b4be210851ee3fd3452755 (patch) | |
tree | 429eb6732cd894d329c31d5d2252cca39e606c8e /static | |
parent | Update countdown.js (diff) |
Pushing the footer to the bottom of the page
Diffstat (limited to 'static')
-rw-r--r-- | static/style.css | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/static/style.css b/static/style.css index 51f3c8da..418ce8fa 100644 --- a/static/style.css +++ b/static/style.css @@ -1,3 +1,17 @@ +html { + height: 100%; +} + +body { + display: flex; + flex-direction: column; + height: 100%; +} + +.uk-offcanvas-content { + flex: 1 0 auto; +} + .uk-background-secondary .uk-navbar-dropdown-nav .uk-active a { color: white !important; } @@ -74,10 +88,14 @@ img.uk-border-rounded { border: 1px #25292f solid; } +footer { + flex-shrink: 0; +} + footer div.uk-section { padding: 0 0 0 0; } footer div.uk-section div.uk-text-center { margin-top: 20px; -}
\ No newline at end of file +} |