From 517e2e5d19fca6631c7fef2d72e7ee3a90b4c5c8 Mon Sep 17 00:00:00 2001 From: Sahat Yalkabov Date: Mon, 14 Apr 2014 00:43:57 -0400 Subject: [PATCH] Switched to old footer like on demo site --- public/css/styles.less | 6 ++---- public/css/themes/default.less | 8 ++++++++ public/css/themes/flatly.less | 8 ++++++-- views/partials/footer.jade | 26 ++++++++++++++------------ 4 files changed, 30 insertions(+), 18 deletions(-) diff --git a/public/css/styles.less b/public/css/styles.less index 6fccb7155b..303e54116e 100644 --- a/public/css/styles.less +++ b/public/css/styles.less @@ -26,10 +26,8 @@ body { } #footer { - font-size: 12px; - padding-top: 40px; - padding-bottom: 40px; - height: 100px; + height: 110px; + padding-top: 15px; } // Navbar diff --git a/public/css/themes/default.less b/public/css/themes/default.less index 66a4a83323..20582501e6 100644 --- a/public/css/themes/default.less +++ b/public/css/themes/default.less @@ -81,3 +81,11 @@ .navbar-default .navbar-nav > li a { transition: color 0.3s; } + +// Footer +// ------------------------- + +#footer { + background-color: #f8f8f8; + border-top: 1px solid #e7e7e7; +} diff --git a/public/css/themes/flatly.less b/public/css/themes/flatly.less index ccbba116b0..b4e124c001 100644 --- a/public/css/themes/flatly.less +++ b/public/css/themes/flatly.less @@ -2,6 +2,8 @@ // Variables // -------------------------------------------------- +@import url("//fonts.googleapis.com/css?family=Lato:400,700,400italic"); + //== Colors // //## Gray and brand colors for use across Bootstrap. @@ -988,7 +990,9 @@ input[type="color"], .box-shadow(none); } +// Footer ================================================================= + #footer { - color: #3A5169; - background-color: #1D2936; + color: #fff; + background-color: @brand-primary; } \ No newline at end of file diff --git a/views/partials/footer.jade b/views/partials/footer.jade index e8b924368e..7423744121 100644 --- a/views/partials/footer.jade +++ b/views/partials/footer.jade @@ -1,13 +1,15 @@ #footer - .container - ul.list-inline.pull-left - li © 2014 Company, Inc. - ul.list-inline.pull-right - li - a(href='#') Terms of Use - li - a(href='#') Privacy Policy - li - a(href='https://github.com/sahat/hackathon-starter') GitHub Project - li - a(href='https://github.com/sahat/hackathon-starter/issues') Issues + .container.text-center + div © 2014 Company, Inc. + div + strong Hackathon Starter + | Project · + | Created by + a(href='http://sahatyalkabov.com') Sahat Yalkabov + div + | Code licensed under  + a(href='http://opensource.org/licenses/mit-license.html') MIT License + div + a(href='https://github.com/sahat/hackathon-starter') GitHub Project + | ·  + a(href='https://github.com/sahat/hackathon-starter/issues') Issues \ No newline at end of file