diff options
-rw-r--r-- | _includes/footer.html | 2 | ||||
-rw-r--r-- | _includes/header.html | 6 | ||||
-rw-r--r-- | css/footer.css | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/_includes/footer.html b/_includes/footer.html index 2159e5b..c4b8f45 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,6 +1,6 @@ </div> </div> - <div class="block"> + <div class="footer-wrapper-row"> <footer class="navbar-default"> <div class="container"> <div style="display: table; width: 100%;"> diff --git a/_includes/header.html b/_includes/header.html index e3a9158..e9fcc2b 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -17,9 +17,9 @@ <![endif]--> </head> <body> - <div class="wrapper"> - <div class="block"> + <div class="top-level-footer-wrapper"> + <div class="footer-wrapper-row"> {% include navbar.html %} </div> - <div class="block push"> + <div class="footer-wrapper-row footer-wrapper-row-auto-height"> <div class="container"> diff --git a/css/footer.css b/css/footer.css index f8896b5..5687240 100644 --- a/css/footer.css +++ b/css/footer.css @@ -2,16 +2,16 @@ html, body { height: 100%; width: 100%; } -.wrapper { +.top-level-footer-wrapper { height: 100%; width: 100%; display: table; } -.block { +.footer-wrapper-row { display: table-row; height: 1px; } -.push { +.footer-wrapper-row-auto-height { height: auto; } footer { |