aboutsummaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorZarino Zappia <mail@zarino.co.uk>2017-05-31 16:19:51 +0100
committerMatthew Somerville <matthew-github@dracos.co.uk>2017-06-15 17:29:21 +0100
commitf4a7250eccdc70e3413c18f80b01aec7042a17da (patch)
treef44a67f78726464bf6a1d72fef0338ba83b12831 /web
parentce350cc13134bdbbbf50af2689fbc63a04b3773b (diff)
[Borsetshire] New cobrand for fictional council
Diffstat (limited to 'web')
-rw-r--r--web/cobrands/borsetshire/_colours.scss39
-rw-r--r--web/cobrands/borsetshire/_council-header.scss74
-rw-r--r--web/cobrands/borsetshire/base.scss22
-rw-r--r--web/cobrands/borsetshire/images/site-logo-mobile.pngbin0 -> 2408 bytes
-rw-r--r--web/cobrands/borsetshire/images/site-logo-mobile.svg1
-rw-r--r--web/cobrands/borsetshire/images/site-logo-mobile@2x.pngbin0 -> 4795 bytes
-rw-r--r--web/cobrands/borsetshire/images/site-logo.pngbin0 -> 3650 bytes
-rw-r--r--web/cobrands/borsetshire/images/site-logo.svg1
-rw-r--r--web/cobrands/borsetshire/images/site-logo@2x.pngbin0 -> 7489 bytes
-rw-r--r--web/cobrands/borsetshire/images/street.jpgbin0 -> 89795 bytes
-rw-r--r--web/cobrands/borsetshire/layout.scss48
11 files changed, 185 insertions, 0 deletions
diff --git a/web/cobrands/borsetshire/_colours.scss b/web/cobrands/borsetshire/_colours.scss
new file mode 100644
index 000000000..78f06e1c8
--- /dev/null
+++ b/web/cobrands/borsetshire/_colours.scss
@@ -0,0 +1,39 @@
+/* LAYOUT */
+
+// If you are wanting a right-to-left layout, uncomment the following line.
+// $direction: right;
+
+/* COLOURS */
+
+$color-borsetshire-blue: #1375B8;
+$color-borsetshire-light-blue: #95D4FF;
+$color-borsetshire-green: #76951F;
+$color-borsetshire-light-green: #A6C257;
+$color-borsetshire-yellow: #C5A728;
+$color-borsetshire-light-yellow: #F4D659;
+
+$primary: $color-borsetshire-blue; // background on #postcodeForm, #front_stats, #front-main on desktop, and border-bottom on various map page sidebar items
+$primary_b: darken($color-borsetshire-blue, 10%); // border on div around the #postcodeForm input
+$primary_text: #fff; // text colour wherever $primary is the background
+
+$base_bg: white; // background on body and .tablewrapper on desktop
+$base_fg: #000; // text color on body and .tablewrapper on desktop
+
+$map_nav_bg: $color-borsetshire-blue; // background for #site-header on mobile, and `.mappage #site-header` on desktop
+$nav_fg: #fff; // text color for `.nav-menu a` on desktop
+$nav_fg_hover: $color-borsetshire-blue; // hover text color for `.nav-menu a`
+
+$col_big_numbers: #ccc; // text color for ol.big-numbers list item counters on homepage
+
+$col_click_map: gray; // background for .big-green-banner on map page
+
+$col_fixed_label: #00BD08;
+$col_fixed_label_dark: #4B8304;
+
+$header-top-border: false;
+
+$mappage-header-height: 5em; // 3em #site-logo plus 1em padding top and bottom
+
+$body-font: Cabin, "Calibri", "Gill Sans", "Gill Sans MT", sans-serif;
+$meta-font: $body-font;
+$heading-font: $body-font; \ No newline at end of file
diff --git a/web/cobrands/borsetshire/_council-header.scss b/web/cobrands/borsetshire/_council-header.scss
new file mode 100644
index 000000000..eec6020f5
--- /dev/null
+++ b/web/cobrands/borsetshire/_council-header.scss
@@ -0,0 +1,74 @@
+.nav-wrapper {
+ top: 5em;
+}
+
+#main-nav {
+ min-height: 3.5em;
+}
+
+.site-header__fake-nav {
+ display: block;
+ position: absolute;
+ top: 0;
+ right: 1em;
+ height: 48px;
+ margin: 0 -1em;
+ @include flex-container();
+ @include flex-align(center);
+
+ li {
+ padding: 0 1em;
+ margin: 0;
+ list-style: none;
+ }
+
+ input,
+ span {
+ display: inline-block;
+ height: 38px;
+ vertical-align: top;
+ }
+
+ input {
+ width: 10em;
+ }
+
+ span {
+ line-height: 38px;
+ background-color: $color-borsetshire-blue;
+ padding: 0 1em;
+ }
+}
+
+#site-subheader {
+ display: block;
+ padding: 1em;
+ background: $color-borsetshire-blue;
+ color: #fff;
+
+ h2 {
+ line-height: 24px;
+ margin: 0;
+ }
+}
+
+// Reset all the header customisations on the map page.
+.mappage {
+ .nav-wrapper {
+ top: 0;
+ }
+
+ #main-nav {
+ min-height: 5em;
+ }
+
+ #site-subheader,
+ .site-header__fake-nav {
+ display: none;
+ }
+}
+
+// Accommodate the new, taller, header.
+body.twothirdswidthpage .content .sticky-sidebar aside {
+ top: 10em;
+}
diff --git a/web/cobrands/borsetshire/base.scss b/web/cobrands/borsetshire/base.scss
new file mode 100644
index 000000000..b8e26d687
--- /dev/null
+++ b/web/cobrands/borsetshire/base.scss
@@ -0,0 +1,22 @@
+@import "../sass/h5bp";
+@import "./_colours";
+@import "../sass/mixins";
+
+@import "../sass/base";
+
+#site-logo {
+ background-position: 0 0;
+ background-size: 120px 32px;
+ height: 32px;
+ width: 120px;
+ @include high-dpi-background-image('images/site-logo-mobile');
+}
+
+#site-header {
+ padding: 1em 0;
+}
+
+#site-subheader,
+.site-header__fake-nav {
+ display: none;
+}
diff --git a/web/cobrands/borsetshire/images/site-logo-mobile.png b/web/cobrands/borsetshire/images/site-logo-mobile.png
new file mode 100644
index 000000000..b12c9d3e2
--- /dev/null
+++ b/web/cobrands/borsetshire/images/site-logo-mobile.png
Binary files differ
diff --git a/web/cobrands/borsetshire/images/site-logo-mobile.svg b/web/cobrands/borsetshire/images/site-logo-mobile.svg
new file mode 100644
index 000000000..89aeeabae
--- /dev/null
+++ b/web/cobrands/borsetshire/images/site-logo-mobile.svg
@@ -0,0 +1 @@
+<svg width="120" height="32" viewBox="0 0 120 32" xmlns="http://www.w3.org/2000/svg"><title>site-logo-mobile</title><g fill="none" fill-rule="evenodd"><path d="M46.837 4.427c0 .316-.034.63-.1.94-.067.31-.174.6-.32.875-.146.273-.337.514-.574.72-.237.207-.52.365-.848.474v.11c.29.073.568.182.83.328.26.146.49.344.683.593.195.25.35.553.466.912.115.358.173.78.173 1.267 0 .656-.113 1.225-.338 1.705-.226.48-.53.873-.913 1.177-.383.303-.83.528-1.34.674-.51.145-1.052.218-1.624.218h-.656c-.268 0-.557-.01-.867-.027-.31-.018-.63-.046-.957-.082-.33-.037-.633-.09-.912-.164V1.562c.402-.073.898-.137 1.487-.19.59-.056 1.177-.083 1.76-.083.536 0 1.05.042 1.542.127.49.085.923.243 1.294.475.37.23.666.55.884.957.22.406.33.932.33 1.577zm-3.85 8.007c.512 0 .93-.164 1.26-.492.328-.33.492-.81.492-1.44 0-.402-.056-.722-.165-.96-.11-.236-.255-.418-.438-.546-.182-.128-.392-.21-.63-.246-.236-.037-.482-.055-.738-.055h-.93v3.63c.096.036.264.064.5.082.238.018.454.027.648.027zm-.62-5.545c.135 0 .29-.01.466-.028.176-.018.32-.04.43-.064.35-.134.652-.353.902-.657.25-.303.374-.698.374-1.184 0-.316-.044-.584-.13-.803-.084-.22-.2-.392-.346-.52-.146-.127-.32-.218-.52-.273-.2-.055-.416-.082-.647-.082-.5 0-.85.024-1.058.073v3.54h.528zm5.747 2.79c0-1.617.316-2.82.948-3.612.632-.79 1.514-1.185 2.645-1.185 1.216 0 2.122.4 2.718 1.204.595.802.893 2 .893 3.593 0 1.63-.316 2.836-.948 3.62-.632.785-1.52 1.177-2.663 1.177-2.396 0-3.593-1.6-3.593-4.797zm2.243 0c0 .912.103 1.617.31 2.116.207.498.553.748 1.04.748.462 0 .805-.216 1.03-.648.225-.432.338-1.17.338-2.216 0-.936-.103-1.648-.31-2.134-.207-.486-.56-.73-1.058-.73-.426 0-.757.216-.994.648-.237.432-.356 1.17-.356 2.216zm10.506-2.408c-.29-.11-.56-.164-.802-.164-.328 0-.61.09-.847.274-.237.182-.4.438-.484.766v6.092h-2.17V5.12h1.66l.254 1.094h.073c.158-.4.386-.714.684-.94.3-.224.642-.336 1.03-.336.293 0 .58.06.86.182l-.257 2.152zm4.104 4.542c0-.255-.082-.47-.246-.647-.163-.177-.373-.34-.628-.493-.256-.152-.526-.307-.812-.465-.286-.16-.556-.354-.812-.585-.255-.23-.465-.51-.63-.84-.163-.327-.245-.74-.245-1.24 0-.85.23-1.507.693-1.97.462-.46 1.143-.692 2.043-.692.534 0 1.04.058 1.513.173.474.116.85.26 1.13.43l-.51 1.677c-.23-.097-.51-.192-.84-.283-.327-.09-.65-.137-.966-.137-.596 0-.893.25-.893.748 0 .232.082.424.246.576.164.152.374.3.63.447.254.146.525.298.81.456.286.157.557.354.812.59.256.24.466.527.63.868.164.34.246.76.246 1.258 0 .84-.255 1.514-.766 2.025-.51.512-1.27.767-2.28.767-.5 0-.988-.06-1.468-.182s-.867-.28-1.16-.475l.603-1.75c.256.145.55.273.885.382.334.11.684.165 1.05.165.278 0 .51-.064.692-.192.182-.128.273-.33.273-.61zm9.485 1.75c-.304.27-.717.488-1.24.658-.523.17-1.07.255-1.642.255-.632 0-1.176-.11-1.632-.328-.456-.22-.83-.536-1.122-.95-.292-.413-.508-.915-.648-1.504-.14-.59-.21-1.262-.21-2.016 0-1.642.326-2.855.977-3.64.65-.783 1.553-1.175 2.708-1.175.39 0 .766.057 1.13.173.366.115.69.31.977.584.286.273.517.638.693 1.094.176.456.265 1.03.265 1.724 0 .267-.016.553-.046.857-.03.304-.076.632-.137.985h-4.432c.024.754.182 1.33.474 1.733.292.4.76.602 1.405.602.39 0 .744-.06 1.067-.183.32-.12.567-.25.737-.383l.675 1.515zm-2.845-6.84c-.462 0-.81.187-1.04.557-.23.372-.365.892-.4 1.56h2.516c.036-.692-.037-1.218-.22-1.577-.18-.36-.467-.538-.856-.538zm3.775-1.604h1.004V3.405l2.17-.674v2.39h1.77v1.933h-1.77v3.977c0 .523.052.894.155 1.112.105.22.29.33.558.33.182 0 .346-.02.492-.056.146-.036.304-.09.474-.164l.274 1.733c-.268.133-.578.246-.93.337-.353.09-.724.137-1.113.137-.693 0-1.213-.202-1.56-.603-.346-.4-.52-1.076-.52-2.025v-4.78h-1.003V5.12zm9.084 6.694c0-.255-.082-.47-.246-.647-.164-.177-.374-.34-.63-.493-.255-.152-.526-.307-.81-.465-.287-.16-.558-.354-.813-.585-.255-.23-.465-.51-.63-.84-.163-.327-.245-.74-.245-1.24 0-.85.23-1.507.693-1.97.462-.46 1.143-.692 2.043-.692.535 0 1.04.058 1.513.173.476.116.853.26 1.132.43l-.51 1.677c-.23-.097-.51-.192-.84-.283-.328-.09-.65-.137-.966-.137-.596 0-.894.25-.894.748 0 .232.082.424.246.576.164.152.374.3.63.447.255.146.526.298.81.456.287.157.558.354.813.59.256.24.466.527.63.868.164.34.246.76.246 1.258 0 .84-.255 1.514-.766 2.025-.51.512-1.27.767-2.28.767-.498 0-.988-.06-1.468-.182s-.866-.28-1.158-.475l.602-1.75c.255.145.55.273.884.382.335.11.684.165 1.05.165.28 0 .51-.064.692-.192.183-.128.274-.33.274-.61zm7.843 2.426V8.732c0-.657-.077-1.13-.23-1.423-.15-.293-.428-.44-.83-.44-.29 0-.558.104-.8.31-.245.208-.41.47-.494.785v6.275h-2.17V1.472h2.17v4.47h.055c.244-.317.54-.573.886-.767.346-.195.78-.292 1.304-.292.377 0 .705.055.985.164.28.11.516.292.71.547.196.256.34.6.44 1.03.096.432.145.977.145 1.633v5.983h-2.17zm3.848-9.12h2.17v9.12h-2.17V5.12zm-.256-2.572c0-.365.116-.666.347-.903.23-.237.558-.355.984-.355.426 0 .766.115 1.02.346.257.23.384.535.384.912s-.127.675-.383.894c-.255.22-.595.328-1.02.328-.427 0-.755-.112-.986-.337-.232-.225-.348-.52-.348-.885zm8.482 4.724c-.292-.11-.56-.164-.803-.164-.327 0-.61.09-.847.274-.237.182-.398.438-.483.766v6.092h-2.17V5.12h1.66l.255 1.094h.073c.158-.4.386-.714.684-.94.297-.224.64-.336 1.03-.336.292 0 .578.06.857.182l-.256 2.152zm7.205 6.293c-.305.268-.72.487-1.242.657-.522.17-1.07.255-1.64.255-.633 0-1.178-.11-1.634-.328-.456-.22-.83-.536-1.12-.95-.293-.413-.51-.915-.65-1.504-.14-.59-.21-1.262-.21-2.016 0-1.642.327-2.855.977-3.64.652-.783 1.555-1.175 2.71-1.175.39 0 .766.057 1.13.173.366.115.69.31.977.584.285.273.516.638.693 1.094.176.456.264 1.03.264 1.724 0 .267-.015.553-.045.857-.032.304-.077.632-.138.985h-4.433c.024.754.182 1.33.474 1.733.292.4.76.602 1.404.602.39 0 .745-.06 1.067-.183.322-.12.57-.25.74-.383l.674 1.515zm-2.847-6.84c-.462 0-.808.186-1.04.556-.23.372-.364.892-.4 1.56h2.517c.036-.692-.037-1.218-.22-1.577-.182-.36-.468-.538-.857-.538zM43.45 28.972c-1.248 0-2.272-.41-3.073-1.232-.8-.82-1.2-1.905-1.2-3.252 0-1.347.4-2.43 1.2-3.252.8-.822 1.825-1.232 3.074-1.232.92 0 1.73.168 2.428.505l-.16 1.366c-.912-.337-1.668-.505-2.267-.505-.862 0-1.525.29-1.99.863-.463.575-.695 1.327-.695 2.255 0 .928.232 1.68.696 2.255.465.574 1.128.862 1.99.862.642 0 1.397-.168 2.268-.505l.16 1.367c-.69.337-1.5.505-2.427.505zm6.124-.05c-.945 0-1.694-.303-2.248-.91-.555-.608-.832-1.364-.832-2.267 0-.896.277-1.65.832-2.26.554-.613 1.303-.92 2.248-.92.944 0 1.694.307 2.248.92.555.61.832 1.364.832 2.26 0 .903-.277 1.66-.832 2.267-.554.607-1.304.91-2.248.91zm0-5.173c-.518 0-.922.18-1.214.54-.29.362-.437.847-.437 1.455 0 .616.146 1.104.437 1.466.292.362.696.543 1.214.543.517 0 .922-.18 1.213-.542.292-.36.438-.85.438-1.465 0-.608-.146-1.093-.438-1.454-.29-.36-.696-.54-1.213-.54zm9.4 5.05h-1.28l-.063-.456c-.4.386-.89.58-1.465.58-1.66 0-2.49-.958-2.49-2.87v-3.377h1.394v3.277c0 .608.1 1.055.307 1.343.205.287.53.43.973.43.542 0 .953-.188 1.232-.566v-4.483h1.392V28.8zm6.912 0h-1.393v-3.314c0-.6-.104-1.04-.314-1.318-.21-.28-.55-.42-1.017-.42-.575 0-1.014.202-1.318.604V28.8h-1.393v-6.123h1.257l.048.456c.477-.378.994-.567 1.553-.567 1.717 0 2.576.973 2.576 2.92V28.8zm4.533-1.023l-.124 1.146h-1.06c-.54 0-.948-.152-1.22-.456-.27-.304-.406-.673-.406-1.108v-3.55h-.924l.124-1.133h.8v-1.392l1.393-.148v1.54h1.43v1.133h-1.43v2.908c0 .5.05.803.154.905.102.103.396.154.88.154h.382zm6.75-5.1l-3.806 9.104h-1.442l1.38-3.35-2.55-5.753h1.552l1.676 4.127 1.638-4.127h1.553zm7.565 6.295c-1.248 0-2.273-.41-3.074-1.232-.8-.82-1.2-1.905-1.2-3.252 0-1.347.4-2.43 1.2-3.252.802-.822 1.827-1.232 3.075-1.232.92 0 1.73.168 2.427.505l-.16 1.366c-.912-.337-1.667-.505-2.267-.505-.862 0-1.525.29-1.99.863-.464.575-.696 1.327-.696 2.255 0 .928.23 1.68.696 2.255.464.574 1.127.862 1.99.862.64 0 1.395-.168 2.266-.505l.16 1.367c-.69.337-1.5.505-2.427.505zm6.123-.05c-.944 0-1.694-.303-2.248-.91-.555-.608-.832-1.364-.832-2.267 0-.896.277-1.65.832-2.26.554-.613 1.304-.92 2.248-.92.945 0 1.694.307 2.25.92.553.61.83 1.364.83 2.26 0 .903-.277 1.66-.83 2.267-.556.607-1.305.91-2.25.91zm0-5.173c-.517 0-.922.18-1.213.54-.292.362-.438.847-.438 1.455 0 .616.146 1.104.438 1.466.29.362.696.543 1.213.543.518 0 .922-.18 1.214-.542.29-.36.437-.85.437-1.465 0-.608-.147-1.093-.438-1.454-.292-.36-.696-.54-1.214-.54zm9.4 5.05h-1.28l-.062-.456c-.403.386-.892.58-1.467.58-1.66 0-2.49-.958-2.49-2.87v-3.377h1.393v3.277c0 .608.103 1.055.308 1.343.206.287.53.43.974.43.542 0 .953-.188 1.232-.566v-4.483h1.392V28.8zm6.912 0h-1.392v-3.314c0-.6-.105-1.04-.314-1.318-.21-.28-.55-.42-1.017-.42-.575 0-1.014.202-1.318.604V28.8h-1.393v-6.123h1.256l.05.456c.476-.378.994-.567 1.552-.567 1.717 0 2.575.973 2.575 2.92V28.8zm4.03.123c-.954 0-1.69-.304-2.213-.91-.52-.61-.782-1.365-.782-2.268 0-.912.26-1.67.782-2.273.522-.604 1.26-.906 2.212-.906.762 0 1.378.144 1.847.43l-.148 1.21c-.51-.305-1.036-.457-1.578-.457s-.96.177-1.25.535c-.292.357-.438.844-.438 1.46 0 .607.148 1.094.443 1.46.296.365.71.548 1.245.548.542 0 1.072-.152 1.59-.456l.135 1.17c-.47.304-1.085.456-1.848.456zm4.323-7.306h-1.405v-1.44h1.405v1.44zm0 7.183h-1.405v-6.123h1.405V28.8zm3.67-1.023l-.134 1.146h-.494c-.526 0-.92-.148-1.183-.443-.263-.296-.394-.67-.394-1.12v-7.8h1.403v7.17c0 .485.046.78.136.887.09.107.31.16.664.16z" fill="#FFF"/><path d="M16.826 19.967C9.006 20.675 2.15 21.717 0 22.4V32h32V19.2c-1.418 0-2.887.028-4.382.078.547.913.862 1.98.862 3.122 0 3.358-2.722 6.08-6.08 6.08s-6.08-2.722-6.08-6.08c0-.865.18-1.688.506-2.433zM22.4 27.2c2.65 0 4.8-2.15 4.8-4.8s-2.15-4.8-4.8-4.8-4.8 2.15-4.8 4.8 2.15 4.8 4.8 4.8z" fill="#F4D659"/><path d="M17.64 18.615C9.488 19.323 2.224 20.413 0 21.12V32h32V17.92c-1.73 0-3.533.04-5.368.114-1.095-1.06-2.587-1.714-4.232-1.714-1.927 0-3.645.896-4.76 2.295zM0 9.6c8.16 0 23.36 3.2 32 3.2V32H0V9.6z" fill="#A6C257"/><path d="M0 0h32v32H0V0zm0 8.32c8.16 0 23.36 3.2 32 3.2V32H0V8.32z" fill="#95D4FF"/></g></svg> \ No newline at end of file
diff --git a/web/cobrands/borsetshire/images/site-logo-mobile@2x.png b/web/cobrands/borsetshire/images/site-logo-mobile@2x.png
new file mode 100644
index 000000000..d19fdcebb
--- /dev/null
+++ b/web/cobrands/borsetshire/images/site-logo-mobile@2x.png
Binary files differ
diff --git a/web/cobrands/borsetshire/images/site-logo.png b/web/cobrands/borsetshire/images/site-logo.png
new file mode 100644
index 000000000..31185ec8c
--- /dev/null
+++ b/web/cobrands/borsetshire/images/site-logo.png
Binary files differ
diff --git a/web/cobrands/borsetshire/images/site-logo.svg b/web/cobrands/borsetshire/images/site-logo.svg
new file mode 100644
index 000000000..308d82c76
--- /dev/null
+++ b/web/cobrands/borsetshire/images/site-logo.svg
@@ -0,0 +1 @@
+<svg width="180" height="48" viewBox="0 0 180 48" xmlns="http://www.w3.org/2000/svg"><title>site-logo</title><g fill="none" fill-rule="evenodd"><path d="M70.255 6.64c0 .475-.05.944-.15 1.41-.1.464-.26.902-.48 1.313-.218.41-.505.77-.86 1.08-.357.31-.78.548-1.273.712v.164c.438.108.853.272 1.245.49.392.22.734.517 1.026.89.292.374.524.83.697 1.37.174.537.26 1.17.26 1.9 0 .985-.168 1.838-.506 2.558-.337.72-.793 1.31-1.368 1.765-.574.456-1.245.793-2.01 1.012-.767.22-1.58.33-2.436.33h-.985c-.4 0-.834-.015-1.3-.042-.465-.028-.943-.07-1.436-.124-.493-.055-.95-.137-1.37-.247V2.345c.603-.11 1.346-.205 2.23-.287.886-.083 1.766-.124 2.64-.124.804 0 1.574.064 2.313.192.74.128 1.386.365 1.943.71.556.348.998.827 1.327 1.438.328.61.492 1.4.492 2.366zm-5.773 12.01c.766 0 1.396-.245 1.888-.737.493-.493.74-1.213.74-2.162 0-.6-.083-1.08-.247-1.435-.165-.356-.383-.63-.657-.82-.274-.193-.588-.316-.944-.37-.356-.055-.725-.082-1.108-.082H62.76v5.444c.144.055.395.096.75.123.357.028.68.04.972.04zm-.93-8.316c.2 0 .433-.014.698-.04.264-.028.478-.06.643-.097.53-.2.98-.53 1.354-.985.374-.456.56-1.05.56-1.778 0-.474-.063-.876-.19-1.204-.128-.328-.302-.588-.52-.78-.22-.19-.48-.328-.78-.41-.3-.082-.625-.123-.972-.123-.747 0-1.276.036-1.586.11v5.307h.792zm8.618 4.186c0-2.426.475-4.232 1.423-5.417.95-1.186 2.27-1.78 3.967-1.78 1.824 0 3.183.603 4.077 1.807.894 1.204 1.34 3 1.34 5.39 0 2.444-.474 4.254-1.422 5.43-.95 1.177-2.28 1.766-3.995 1.766-3.593 0-5.39-2.4-5.39-7.196zm3.366 0c0 1.368.155 2.426.465 3.174.31.748.83 1.122 1.56 1.122.693 0 1.21-.324 1.546-.972.338-.647.506-1.755.506-3.324 0-1.404-.155-2.472-.465-3.2-.31-.73-.84-1.096-1.587-1.096-.638 0-1.135.324-1.49.972-.356.647-.534 1.755-.534 3.324zm15.76-3.612c-.44-.164-.84-.246-1.205-.246-.49 0-.915.137-1.27.41-.357.274-.598.657-.726 1.15v9.138h-3.256V7.68h2.49l.383 1.642h.11c.237-.602.58-1.072 1.026-1.41.447-.337.962-.506 1.546-.506.438 0 .867.092 1.286.274l-.383 3.228zm6.155 6.813c0-.382-.122-.706-.368-.97-.247-.265-.56-.51-.944-.74-.383-.227-.79-.46-1.218-.697-.428-.237-.834-.53-1.217-.875-.383-.347-.698-.766-.944-1.26-.247-.49-.37-1.11-.37-1.86 0-1.276.346-2.26 1.04-2.954.692-.693 1.714-1.04 3.063-1.04.803 0 1.56.087 2.27.26.713.174 1.278.388 1.698.643l-.765 2.517c-.347-.146-.767-.287-1.26-.424-.49-.137-.975-.205-1.45-.205-.893 0-1.34.374-1.34 1.122 0 .346.123.634.37.862.246.227.56.45.944.67.382.218.787.446 1.216.683.43.237.835.533 1.218.89.383.355.697.788.944 1.3.246.51.37 1.14.37 1.887 0 1.258-.384 2.27-1.15 3.037-.766.766-1.906 1.15-3.42 1.15-.748 0-1.482-.093-2.203-.275-.72-.182-1.3-.42-1.737-.71l.903-2.628c.384.22.826.41 1.328.575.5.163 1.026.245 1.573.245.42 0 .767-.096 1.04-.287.274-.192.41-.497.41-.917zm14.228 2.628c-.456.4-1.076.73-1.86.985-.785.255-1.605.383-2.463.383-.948 0-1.764-.164-2.448-.493-.684-.328-1.245-.802-1.683-1.423-.438-.62-.762-1.372-.97-2.257-.21-.884-.316-1.892-.316-3.023 0-2.462.488-4.282 1.464-5.458.976-1.177 2.33-1.765 4.063-1.765.583 0 1.15.087 1.696.26.548.173 1.036.465 1.465.875.43.41.775.958 1.04 1.642.264.684.396 1.546.396 2.586 0 .4-.022.83-.067 1.285-.046.456-.114.95-.205 1.478h-6.65c.038 1.13.275 1.997.713 2.6.438.6 1.14.902 2.107.902.584 0 1.117-.09 1.6-.274.484-.18.854-.373 1.11-.573l1.01 2.27zm-4.268-10.26c-.693 0-1.213.278-1.56.834-.346.556-.547 1.336-.6 2.34h3.774c.055-1.04-.054-1.83-.328-2.367-.274-.538-.702-.807-1.286-.807zm5.664-2.408h1.504V5.108l3.256-1.012V7.68h2.654v2.9h-2.654v5.965c0 .784.078 1.34.233 1.67.155.327.433.49.834.49.275 0 .52-.026.74-.08.22-.056.456-.138.71-.247l.412 2.6c-.402.2-.867.368-1.396.505-.53.137-1.085.205-1.67.205-1.038 0-1.818-.3-2.338-.903-.52-.6-.78-1.614-.78-3.037V10.58h-1.504v-2.9zM126.7 17.72c0-.382-.124-.706-.37-.97-.247-.265-.56-.51-.944-.74-.383-.227-.79-.46-1.218-.697-.43-.237-.834-.53-1.217-.875-.382-.347-.697-.766-.943-1.26-.247-.49-.37-1.11-.37-1.86 0-1.276.347-2.26 1.04-2.954.693-.693 1.715-1.04 3.064-1.04.804 0 1.56.087 2.272.26.712.174 1.277.388 1.696.643l-.766 2.517c-.346-.146-.766-.287-1.258-.424-.493-.137-.976-.205-1.45-.205-.894 0-1.34.374-1.34 1.122 0 .346.122.634.368.862.247.227.56.45.944.67.383.218.79.446 1.218.683.43.237.834.533 1.217.89.384.355.7.788.945 1.3.247.51.37 1.14.37 1.887 0 1.258-.383 2.27-1.15 3.037-.765.766-1.905 1.15-3.42 1.15-.747 0-1.48-.093-2.202-.275-.72-.182-1.3-.42-1.737-.71l.903-2.628c.382.22.824.41 1.326.575.5.163 1.026.245 1.573.245.418 0 .765-.096 1.038-.287.274-.192.41-.497.41-.917zm11.764 3.64v-8.263c0-.985-.114-1.696-.342-2.134-.228-.438-.643-.656-1.245-.656-.438 0-.84.155-1.204.465-.365.31-.61.702-.74 1.176v9.412h-3.255V2.208h3.256V8.91h.082c.365-.473.807-.856 1.327-1.148.52-.292 1.172-.438 1.957-.438.565 0 1.057.082 1.477.247.42.165.775.438 1.067.82.292.384.51.9.657 1.547.147.648.22 1.464.22 2.45v8.973h-3.256zm5.773-13.68h3.255v13.68h-3.255V7.68zm-.383-3.858c0-.547.173-.998.52-1.354.346-.356.838-.534 1.477-.534.64 0 1.15.174 1.533.52.383.347.575.803.575 1.368 0 .566-.192 1.013-.575 1.34-.383.33-.894.493-1.532.493s-1.13-.168-1.477-.506c-.346-.338-.52-.78-.52-1.328zm12.722 7.086c-.438-.164-.84-.246-1.204-.246-.492 0-.916.137-1.272.41-.356.274-.597.657-.725 1.15v9.138h-3.256V7.68h2.49l.382 1.642h.11c.236-.602.578-1.072 1.025-1.41.447-.337.962-.506 1.546-.506.438 0 .867.092 1.286.274l-.384 3.228zm10.807 9.44c-.456.4-1.076.73-1.86.985-.785.255-1.605.383-2.463.383-.948 0-1.764-.164-2.448-.493-.684-.328-1.245-.802-1.683-1.423-.44-.62-.763-1.372-.972-2.257-.21-.884-.315-1.892-.315-3.023 0-2.462.488-4.282 1.464-5.458.976-1.177 2.33-1.765 4.063-1.765.583 0 1.15.087 1.696.26.547.173 1.035.465 1.464.875.428.41.775.958 1.04 1.642.264.684.396 1.546.396 2.586 0 .4-.023.83-.068 1.285-.046.456-.114.95-.205 1.478h-6.65c.038 1.13.275 1.997.713 2.6.437.6 1.14.902 2.106.902.584 0 1.117-.09 1.6-.274.484-.18.854-.373 1.11-.573l1.01 2.27zm-4.268-10.26c-.693 0-1.213.278-1.56.834-.346.556-.547 1.336-.6 2.34h3.774c.054-1.04-.055-1.83-.33-2.367-.273-.538-.7-.807-1.285-.807zM65.176 43.46c-1.872 0-3.41-.617-4.61-1.85-1.202-1.23-1.802-2.858-1.802-4.878s.6-3.647 1.802-4.88c1.2-1.23 2.738-1.847 4.61-1.847 1.38 0 2.594.253 3.64.758l-.24 2.05c-1.367-.504-2.5-.756-3.4-.756-1.293 0-2.288.43-2.984 1.293-.696.863-1.044 1.99-1.044 3.382 0 1.392.348 2.52 1.044 3.382.696.862 1.69 1.293 2.984 1.293.96 0 2.095-.252 3.4-.757l.24 2.05c-1.034.506-2.248.76-3.64.76zm9.185-.075c-1.416 0-2.54-.456-3.372-1.368-.83-.91-1.247-2.045-1.247-3.4 0-1.343.417-2.473 1.248-3.39.832-.92 1.956-1.378 3.373-1.378 1.418 0 2.542.458 3.373 1.376.832.918 1.248 2.048 1.248 3.39 0 1.356-.415 2.49-1.247 3.4-.83.913-1.955 1.37-3.372 1.37zm0-7.762c-.775 0-1.382.27-1.82.813-.437.542-.655 1.27-.655 2.18 0 .925.218 1.658.656 2.2.438.542 1.045.813 1.82.813.777 0 1.384-.272 1.82-.814.44-.542.657-1.275.657-2.2 0-.91-.218-1.638-.656-2.18-.436-.542-1.043-.813-1.82-.813zm14.1 7.577h-1.92l-.093-.684c-.604.58-1.337.87-2.2.87-2.488 0-3.732-1.436-3.732-4.307v-5.065h2.088v4.916c0 .913.154 1.584.462 2.015.308.432.795.647 1.46.647.813 0 1.43-.283 1.848-.85v-6.727h2.088V43.2zm10.368 0H96.74v-4.97c0-.9-.157-1.56-.47-1.978-.315-.42-.823-.63-1.526-.63-.862 0-1.52.303-1.977.907v6.67H90.68v-9.185h1.884l.074.684c.714-.568 1.49-.85 2.328-.85 2.575 0 3.862 1.46 3.862 4.38v4.97zm6.8-1.534l-.184 1.72h-1.59c-.812 0-1.422-.23-1.83-.685-.405-.455-.608-1.01-.608-1.662v-5.322h-1.386l.184-1.7h1.202v-2.09l2.088-.22v2.31h2.144v1.7h-2.144v4.36c0 .752.077 1.205.23 1.36.155.153.595.23 1.322.23h.573zm10.128-7.65l-5.71 13.656h-2.162l2.07-5.026-3.826-8.63h2.328l2.514 6.19 2.458-6.19h2.328zm11.347 9.443c-1.873 0-3.41-.617-4.61-1.85-1.202-1.23-1.803-2.858-1.803-4.878s.6-3.647 1.802-4.88c1.2-1.23 2.738-1.847 4.61-1.847 1.38 0 2.594.253 3.64.758l-.24 2.05c-1.366-.504-2.5-.756-3.4-.756-1.293 0-2.288.43-2.984 1.293-.696.863-1.044 1.99-1.044 3.382 0 1.392.348 2.52 1.044 3.382.696.862 1.69 1.293 2.985 1.293.96 0 2.094-.252 3.4-.757l.24 2.05c-1.035.506-2.248.76-3.64.76zm9.184-.075c-1.416 0-2.54-.456-3.372-1.368-.832-.91-1.248-2.045-1.248-3.4 0-1.343.416-2.473 1.248-3.39.83-.92 1.956-1.378 3.372-1.378 1.417 0 2.54.458 3.373 1.376.832.918 1.247 2.048 1.247 3.39 0 1.356-.415 2.49-1.247 3.4-.832.913-1.956 1.37-3.373 1.37zm0-7.762c-.776 0-1.383.27-1.82.813-.437.542-.656 1.27-.656 2.18 0 .925.22 1.658.657 2.2.437.542 1.044.813 1.82.813.777 0 1.383-.272 1.82-.814.438-.542.657-1.275.657-2.2 0-.91-.22-1.638-.656-2.18-.438-.542-1.044-.813-1.82-.813zm14.1 7.577h-1.92l-.094-.684c-.603.58-1.336.87-2.2.87-2.487 0-3.732-1.436-3.732-4.307v-5.065h2.09v4.916c0 .913.153 1.584.46 2.015.31.432.796.647 1.46.647.814 0 1.43-.283 1.85-.85v-6.727h2.088V43.2zm10.368 0h-2.088v-4.97c0-.9-.157-1.56-.472-1.978-.314-.42-.822-.63-1.524-.63-.862 0-1.52.303-1.977.907v6.67h-2.088v-9.185h1.885l.074.684c.715-.568 1.49-.85 2.33-.85 2.573 0 3.86 1.46 3.86 4.38v4.97zm6.043.185c-1.43 0-2.535-.456-3.317-1.368-.782-.91-1.173-2.045-1.173-3.4 0-1.368.39-2.504 1.174-3.41.783-.905 1.89-1.358 3.318-1.358 1.146 0 2.07.215 2.772.646l-.222 1.81c-.764-.455-1.552-.683-2.365-.683-.813 0-1.44.268-1.876.804-.437.536-.656 1.266-.656 2.19 0 .912.223 1.642.666 2.19.444.548 1.066.822 1.867.822.813 0 1.607-.23 2.384-.685l.203 1.756c-.702.457-1.626.685-2.772.685zm6.486-10.96h-2.106v-2.16h2.106v2.16zm0 10.775h-2.106v-9.185h2.106V43.2zm5.507-1.534l-.202 1.72h-.74c-.788 0-1.38-.223-1.773-.666-.394-.444-.592-1.005-.592-1.682V29.34h2.107v10.755c0 .727.068 1.17.203 1.33.136.16.47.24.998.24z" fill="#FFF"/><path d="M25.24 29.95C13.51 31.014 3.222 32.576 0 33.6V48h48V28.8c-2.127 0-4.33.04-6.573.117.82 1.37 1.293 2.97 1.293 4.683 0 5.037-4.083 9.12-9.12 9.12-5.037 0-9.12-4.083-9.12-9.12 0-1.297.27-2.532.76-3.65zM33.6 40.8c3.976 0 7.2-3.224 7.2-7.2s-3.224-7.2-7.2-7.2-7.2 3.224-7.2 7.2 3.224 7.2 7.2 7.2z" fill="#F4D659"/><path d="M26.462 27.923C14.23 28.983 3.334 30.62 0 31.68V48h48V26.88c-2.593 0-5.3.06-8.052.172-1.642-1.592-3.88-2.572-6.348-2.572-2.89 0-5.467 1.345-7.138 3.443zM0 14.4c12.24 0 35.04 4.8 48 4.8V48H0V14.4z" fill="#A6C257"/><path d="M0 0h48v48H0V0zm0 12.48c12.24 0 35.04 4.8 48 4.8V48H0V12.48z" fill="#95D4FF"/></g></svg> \ No newline at end of file
diff --git a/web/cobrands/borsetshire/images/site-logo@2x.png b/web/cobrands/borsetshire/images/site-logo@2x.png
new file mode 100644
index 000000000..1840d6206
--- /dev/null
+++ b/web/cobrands/borsetshire/images/site-logo@2x.png
Binary files differ
diff --git a/web/cobrands/borsetshire/images/street.jpg b/web/cobrands/borsetshire/images/street.jpg
new file mode 100644
index 000000000..d95c7e415
--- /dev/null
+++ b/web/cobrands/borsetshire/images/street.jpg
Binary files differ
diff --git a/web/cobrands/borsetshire/layout.scss b/web/cobrands/borsetshire/layout.scss
new file mode 100644
index 000000000..b6d411e1f
--- /dev/null
+++ b/web/cobrands/borsetshire/layout.scss
@@ -0,0 +1,48 @@
+@import "_colours";
+@import "../sass/layout";
+@import "_council-header";
+
+@import url('https://fonts.googleapis.com/css?family=Cabin:400,400i,700,700i');
+
+#site-logo {
+ background-position: 0 0;
+ background-size: 180px 48px;
+ height: 48px;
+ width: 180px;
+ @include high-dpi-background-image('images/site-logo');
+}
+
+#site-header {
+ background-color: darken($color-borsetshire-blue, 5%);
+}
+
+// Postcode form is left-aligned, and given a background image
+// and a bit more padding than normal.
+#front-main {
+ padding: 4em 1em;
+ text-align: inherit;
+ color: inherit;
+ background: mix(#fff, $color-borsetshire-light-yellow, 50%) url('images/street.jpg') 50% 55% no-repeat;
+ background-size: cover;
+
+ #postcodeForm div {
+ margin: 0;
+ }
+}
+
+// Nav menu items have a bit more padding than normal.
+.nav-menu {
+ a, span {
+ padding: 0.5em 0.75em;
+ border-radius: 0.2em;
+ }
+
+ span {
+ color: $color-borsetshire-light-yellow;
+ }
+
+ a.report-a-problem-btn {
+ padding: 0.5em 0.75em;
+ margin: 0 0.5em 0 0;
+ }
+}