diff options
author | tkimia <tkimia@purdue.edu> | 2014-04-17 19:01:04 -0400 |
---|---|---|
committer | tkimia <tkimia@purdue.edu> | 2014-04-17 19:01:04 -0400 |
commit | 9ab9a92e4434a71a3be315e6a33b736ca3c00107 (patch) | |
tree | 207bf3186934ab98ebeae1dad2f325cfaca41f24 /app/assets/stylesheets | |
parent | efa8017199d496a84ed7385a35cfde9e4cd32b1a (diff) |
temp new layouts
Diffstat (limited to 'app/assets/stylesheets')
-rw-r--r-- | app/assets/stylesheets/application.css | 3 | ||||
-rw-r--r-- | app/assets/stylesheets/scaffolds.css.scss | 61 |
2 files changed, 56 insertions, 8 deletions
diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index dd7588a..ab45dd0 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -26,5 +26,8 @@ footer { clear: both; + margin: 0 auto; margin-top: 10px; + color: white; + width: 90%; }
\ No newline at end of file diff --git a/app/assets/stylesheets/scaffolds.css.scss b/app/assets/stylesheets/scaffolds.css.scss index 6700fef..02b96a2 100644 --- a/app/assets/stylesheets/scaffolds.css.scss +++ b/app/assets/stylesheets/scaffolds.css.scss @@ -1,15 +1,56 @@ @import "bootstrap"; +$page-color: #444; +$toolbar-color: black; + +html{ + height: 100%; +} + body { - background-color: #fff; - color: #333; + background-color: $page-color; + color: $page-color; font-family: verdana, arial, helvetica, sans-serif; font-size: 13px; line-height: 18px; + height: 100%; +} + +.wrapper { + padding-left: 5%; + padding-right: 5%; + margin: 0 auto; + background-color: #fff; + padding-top: 10px; + height: 90%; + box-shadow: 1px 1px 7px orange; + border-radius: 0px 0px 5px 5px; +} + +footer { + clear: both; + margin: 0 auto; + margin-top: 10px; + color: white; + +} + +@media screen and (min-width: 480px) { + .wrapper, footer { + width: 80%; + min-width: 480px; + max-width: 1024px; + } +} + +@media screen and (max-width: 480px) { + .wrapper, footer { + width: 100%; + } } h1, h2, h3, h4, h5{ - color: #0f0f0f; + color: #030303; } p, ol, ul, td { @@ -75,6 +116,9 @@ div { } } + +/* NAVBAR */ + .navbar-brand { @extend .no-dec; a{ @@ -87,11 +131,12 @@ div { } } -footer { - text-align: center; - border-top: solid 1px #999999; - padding-top: 18px; - margin-top: 18px; +.navbar-inverse, header > nav { + background-color: $toolbar-color; + border-color: #0F4070; + border-radius: 0px 0px 5px 5px; + margin-bottom: 0px; + } button, input[type="submit"] { |