diff options
-rw-r--r-- | web/cobrands/oxfordshire/layout.scss | 27 |
1 files changed, 20 insertions, 7 deletions
diff --git a/web/cobrands/oxfordshire/layout.scss b/web/cobrands/oxfordshire/layout.scss index ad2599fb9..fa0c53f23 100644 --- a/web/cobrands/oxfordshire/layout.scss +++ b/web/cobrands/oxfordshire/layout.scss @@ -38,8 +38,16 @@ body, body a { display: none; } -.content, .ie7 .content, .ie8 .content { - margin: 3em 0 0 1em; +// White background, so no shadow or margin needed. +.content { + margin: 0; + @include box-shadow(none); +} +.ie6, .ie7, .ie8 { + .content { + margin: 0; + border: none; + } } // Fix location of aside sidebar @@ -123,11 +131,16 @@ body.twothirdswidthpage .content { } body.mappage { - .content { - padding: 1em; - position: relative; - z-index: 1; - } + .content { + padding: 1em; + position: relative; + z-index: 1; + } + + .content, .ie7 .content, .ie9 .content { + margin: 3em 0 0 1em; + @include box-shadow(0px 0px 6px 1px #000); + } } .ie6, .ie7 { |