diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/cobrands/zerotb/base.scss | 28 | ||||
-rw-r--r-- | web/cobrands/zerotb/layout.scss | 26 |
2 files changed, 54 insertions, 0 deletions
diff --git a/web/cobrands/zerotb/base.scss b/web/cobrands/zerotb/base.scss index f166934b4..179578fc5 100644 --- a/web/cobrands/zerotb/base.scss +++ b/web/cobrands/zerotb/base.scss @@ -14,3 +14,31 @@ $heading-font: 'Lato', sans-serif !default; body { font-weight: 300; } + +#site-logo { + background: none; + text-indent: 0px; + text-transform: uppercase; + width: auto; + margin-right: 80px; + @media( min-width: 350px ) { + margin-top: 0.5em; + } + a { + color: white; + &:hover { + text-decoration: none; + } + } + p { + font-weight: 300; + margin-bottom: 0em; + } + .orange { + color: $button-color; + font-weight: bold; + } + #brought-to-you { + display: none; + } +} diff --git a/web/cobrands/zerotb/layout.scss b/web/cobrands/zerotb/layout.scss index 69e455aa5..58b4d9279 100644 --- a/web/cobrands/zerotb/layout.scss +++ b/web/cobrands/zerotb/layout.scss @@ -1,2 +1,28 @@ @import "_colours"; @import "../sass/layout"; + +body { + &.frontpage { + #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; + } + } + } +} + +.container { + padding: 0em 1em; +} + |