diff options
author | Dave Whiteland <dave@mysociety.org> | 2012-12-04 21:25:25 +0000 |
---|---|---|
committer | Dave Whiteland <dave@mysociety.org> | 2012-12-04 21:25:25 +0000 |
commit | 05ab98e3b511faa686f6c900c25550b035f5141c (patch) | |
tree | f0941afca66ecbc9e70d18d192d01c0dac2a2b54 | |
parent | 0f3a6a261a9b99b8a051b9955114887845cc2637 (diff) |
simplify front page look by overriding some background image declarations
-rw-r--r-- | web/cobrands/oxfordshire/layout.scss | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/web/cobrands/oxfordshire/layout.scss b/web/cobrands/oxfordshire/layout.scss index cad35e58f..6b239ad96 100644 --- a/web/cobrands/oxfordshire/layout.scss +++ b/web/cobrands/oxfordshire/layout.scss @@ -1,2 +1,22 @@ @import "_colours"; @import "../fixmystreet/_layout"; + +body { + background-color: #fff; + background-image: none; +} + +#front-main { + background-color: $primary; + background-image: none; + @include border-radius(1em 1em 0 0); + margin: 2em 1em 0; + padding-top: 0; + h2 { + color: $primary_text; + } + a#geolocate_link { + color: $primary_text; + } +} + |