diff options
-rw-r--r-- | web/cobrands/fixmystreet/layout.scss | 46 | ||||
-rw-r--r-- | web/cobrands/sass/_layout.scss | 65 |
2 files changed, 65 insertions, 46 deletions
diff --git a/web/cobrands/fixmystreet/layout.scss b/web/cobrands/fixmystreet/layout.scss index 42df5fdbb..21de4f271 100644 --- a/web/cobrands/fixmystreet/layout.scss +++ b/web/cobrands/fixmystreet/layout.scss @@ -169,61 +169,15 @@ body.fullwidthpage { .container { .content { - box-shadow: none; - padding: 1em 1em 0em; - margin-bottom: 0em; footer { - margin-top: 0em; .tablewrapper { - padding-top: 2em; - padding-bottom: 3em; background: #1a1a1a url(images/tile.jpg) 0 0 repeat; - color: $base_fg; - a:link, - a:visited { - color: $primary; - } - #footer-mobileapps { - a { - padding-left: 0.5em; - } - } - h4 { - font-weight: normal; - padding-bottom: 0.5em; - } - } - - a.platform-logo { - vertical-align: baseline; - display: inline-block; - background-position: top left; - background-repeat: no-repeat; - background-size: auto 1.5em; - background-image: url("images/fms-platform-logo.svg"); - text-indent: -1000%; - height: 1.7em; - width: 16em; - padding-right: 0.25em; } } } } } -.ie6, .ie7, .ie8 { - body.frontpage, - body.twothirdswidthpage { - .content { - border: 0px; - } - } -} -.ie8 body.frontpage .container .content footer a.platform-logo { - background: none; - text-indent: 0px; -} - body.frontpage { .container { background-color: transparent; diff --git a/web/cobrands/sass/_layout.scss b/web/cobrands/sass/_layout.scss index 118fb1523..b7c1c9f96 100644 --- a/web/cobrands/sass/_layout.scss +++ b/web/cobrands/sass/_layout.scss @@ -382,6 +382,71 @@ body.fullwidthpage { width: auto; } } + +body.twothirdswidthpage, +body.fullwidthpage { + .container { + .content { + box-shadow: none; + padding: 1em 1em 0em; + margin-bottom: 0em; + footer { + margin-top: 0em; + .tablewrapper { + padding-top: 2em; + padding-bottom: 3em; + background: $base_bg; + color: $base_fg; + a:link, + a:visited { + color: $primary; + } + #footer-mobileapps { + a { + padding-left: 0.5em; + } + } + h4 { + font-weight: normal; + padding-bottom: 0.5em; + } + } + + a.platform-logo { + vertical-align: baseline; + display: inline-block; + background-position: top left; + background-repeat: no-repeat; + background-size: auto 1.5em; + background-image: url(/cobrands/fixmystreet/images/fms-platform-logo.svg); + text-indent: -1000%; + height: 1.7em; + width: 16em; + padding-right: 0.25em; + } + } + } + } + +} +.ie6, .ie7, .ie8 { + body.twothirdswidthpage, + body.fullwidthpage { + .content { + border: 0px; + } + } +} +.ie8 { + body.twothirdswidthpage, + body.fullwidthpage { + .container .content footer a.platform-logo { + background: none; + text-indent: 0px; + } + } +} + // two thirds width page, also has option for a sidebar which can be sticky or not body.twothirdswidthpage { .container { |