diff options
author | Struan Donald <struan@exo.org.uk> | 2014-04-11 10:34:37 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2014-04-11 10:34:37 +0100 |
commit | e6d0b61e1a406cc79a5a8390fc148b51d2e36e76 (patch) | |
tree | 5a1d2f8deb2d822a2e669249a46df0bfd2c77ed7 /web/cobrands/zerotb/layout.scss | |
parent | 03244f1e7d9a03ab704f797a19893c1efdb2b1e6 (diff) | |
parent | dbe9c7ecb157196ed201d94d4159abfb034240ff (diff) |
Merge branch 'zerotb'
Diffstat (limited to 'web/cobrands/zerotb/layout.scss')
-rw-r--r-- | web/cobrands/zerotb/layout.scss | 121 |
1 files changed, 121 insertions, 0 deletions
diff --git a/web/cobrands/zerotb/layout.scss b/web/cobrands/zerotb/layout.scss new file mode 100644 index 000000000..ea8102ded --- /dev/null +++ b/web/cobrands/zerotb/layout.scss @@ -0,0 +1,121 @@ +@import "_colours"; +@import "../sass/layout"; + +body { + &.frontpage { + .nav-wrapper-2 { + background-color: $primary; + color: $primary_text; + height: auto; + } + + #site-header { + background-color: $base_bg; + } + + #site-logo { + background: none; + color: black; + width: auto; + a { + color: black; + } + p { + font-size: 2em; + font-weight: 300; + } + #brought-to-you { + display: block; + font-size: 0.75em; + } + } + } + &.mappage { + #main-nav { + ul#main-menu { + li { + a, + a.report-a-problem-btn, + span { + padding: 0.25em; + margin: 0.5em; + } + } + } + } + .nav-wrapper-2 { + min-height: 4em; + } + } +} + +.nav-wrapper { + .nav-wrapper-2 { + border: none; + min-height: 0; + } +} + +#main-nav { + ul#mysoc-menu { + li { + a { + color: $primary_text; + } + } + } + ul#main-menu { + li { + span { + color: $primary_text; + } + } + } +} + +#site-header { + background: $primary; + height: auto; +} + +.container { + padding: 0em 1em; +} + +#front-main { + #front-main-container { + max-width: 40em; + h2 { + text-align: left; + } + } + #postcodeForm { + div { + width: 30em; + .select2-container, + select#clinic, + input#pc { + max-width: none; + width: 27em; + } + input#show_report { + display: block; + float: right; + width: 3em; + } + } + } + + .select2-container { + a { + color: #444; + text-align: left; + text-decoration: none; + } + } +} + +.content { + background-color: $alt-background; + box-shadow: none; +} |