From a4de2ef2ac5f15d88c8ed82748cec9aff2802805 Mon Sep 17 00:00:00 2001 From: Jack Pearkes Date: Fri, 5 Sep 2014 15:56:50 -0400 Subject: [PATCH] ui: add footer --- ui/index.html | 17 ++++++++++++++--- ui/styles/base.scss | 20 ++++++++++++++++++++ 2 files changed, 34 insertions(+), 3 deletions(-) diff --git a/ui/index.html b/ui/index.html index a5052c2573..1b12711815 100644 --- a/ui/index.html +++ b/ui/index.html @@ -11,13 +11,24 @@ -
-
-
+
+
+
+
+
+ +
+ + diff --git a/ui/styles/base.scss b/ui/styles/base.scss index 10db88faae..47cdf854e3 100644 --- a/ui/styles/base.scss +++ b/ui/styles/base.scss @@ -8,6 +8,21 @@ @import "forms"; @import "notifications"; +html, body { + height: 100%; +} + +.wrapper { + min-height: 100%; + height: auto !important; /* This line and the next line are not necessary unless you need IE6 support */ + height: 100%; + margin: 0 auto -60px; /* the bottom margin is the negative value of the footer's height */ +} + +.footer, .push { + height: 60px; /* .push must be the same height as .footer */ +} + @media (min-width: 1120px) { // + 30 .container { width: 1100px; @@ -128,3 +143,8 @@ a { white-space: nowrap; text-overflow: ellipsis; } + +.do-logo { + opacity: 0.6; + margin-top: -3px; +}