diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/cobrands/fixmystreet/base.scss | 3 | ||||
-rw-r--r-- | web/cobrands/fixmystreet/layout.scss | 62 |
2 files changed, 53 insertions, 12 deletions
diff --git a/web/cobrands/fixmystreet/base.scss b/web/cobrands/fixmystreet/base.scss index 8a5fea2e6..61fa900ed 100644 --- a/web/cobrands/fixmystreet/base.scss +++ b/web/cobrands/fixmystreet/base.scss @@ -374,6 +374,9 @@ label{ } } +.checkbox-group { + margin:1em 0; +} /* LAYOUT */ diff --git a/web/cobrands/fixmystreet/layout.scss b/web/cobrands/fixmystreet/layout.scss index 044045d22..3fd4547fc 100644 --- a/web/cobrands/fixmystreet/layout.scss +++ b/web/cobrands/fixmystreet/layout.scss @@ -288,8 +288,7 @@ textarea{ max-width:25em; } -/* Report a problem page*/ - +/* Report a problem sidebar notes */ #report-a-poblem-sidebar { position:absolute; left:29.5em; @@ -309,7 +308,30 @@ textarea{ font-size:0.75em; } } +.ie6, .ie7 { + #report-a-poblem-sidebar { + top:5em; + } +} +/* More general sidebar notes */ +.general-sidebar-notes { + position: absolute; + left:29.5em; + width:15em; + z-index: -1; + @include box-shadow(rgba(0, 0, 0, 0.6) 0px 0px 4px 1px); + p { + background:#eeeeee; + font-size:0.75em; + padding:0.75em; + margin:0; + &.dark { + background:#333333; + color:#ffffff; + } + } +} /* Frontpage */ body.frontpage { @@ -343,19 +365,30 @@ body.frontpage { } } } +//logo fix +.ie6, .ie7, .ie8 { + body.frontpage #site-logo { + position:relative; + width:60em; + margin:0 auto; + } +} .ie6, .ie7 { - body.frontpage { - .wrapper{ - // padding-top:8em; - } - #site-logo{ - position:relative; - top:-2em; - width:60em; - margin:0 auto; - } + body.frontpage #site-logo { + top:-2em; } } +//weird margining thing for ie8 +.ie8, +.ie8 body.frontpage { + .wrapper .content { + margin-top:7em; + } + #user-meta p { + top:5em; + } +} + #front-main { background:$primary; @@ -407,6 +440,11 @@ body.frontpage { } } } +.ie6, .ie7 { + #front-main { + padding-top:1em; + } +} .front-tablewrapper { display:table; |