diff options
-rw-r--r-- | web/cobrands/reading/css/css.scss | 55 |
1 files changed, 45 insertions, 10 deletions
diff --git a/web/cobrands/reading/css/css.scss b/web/cobrands/reading/css/css.scss index f7951b571..a31bb8c74 100644 --- a/web/cobrands/reading/css/css.scss +++ b/web/cobrands/reading/css/css.scss @@ -1,15 +1,25 @@ -$background: #ecf5fd; +// Generics + +$header_back: #ecf5fd; +$header_back_lighter: #ecf5fd; +$header_colour: #000; +$header_darker: #000; + +$map_width: 420px; + +@import "../../../css/_main.scss"; #navigation { - margin-top: 110px; + margin-top: 125px; } - #logo { - top: 12em; + h1#header { + font-size: 200%; + margin-bottom: 0em; } - #header, #my { - background-color: $background; + #logo { + top: 12.5em; } a { @@ -23,12 +33,37 @@ $background: #ecf5fd; } #mysociety { - #postcodeForm { - background-color: $background; + + #map_box { + width: $map_width + 2; + } + + #map { + width: $map_width; + height: $map_width; } - #front_stats div { - background-color: $background; + dd { + margin-left: 40px; } + div { + padding-top: 0.2em; + padding-bottom: 0.2em; + } + + h3 { + font-size: 1.17em; + font-weight: bold; + margin: 1em 0em 1em 0em; + } + + h2 { + font-weight: bold; + margin: 1em 0em 1em 0em; + } + + ul, ol { + padding-left: 2em; + } } |