aboutsummaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
Diffstat (limited to 'web')
-rw-r--r--web/cobrands/zerotb/_colours.scss3
-rw-r--r--web/cobrands/zerotb/base.scss31
-rw-r--r--web/cobrands/zerotb/layout.scss17
3 files changed, 51 insertions, 0 deletions
diff --git a/web/cobrands/zerotb/_colours.scss b/web/cobrands/zerotb/_colours.scss
index 8118feaf6..a5eb83b71 100644
--- a/web/cobrands/zerotb/_colours.scss
+++ b/web/cobrands/zerotb/_colours.scss
@@ -19,3 +19,6 @@ $col_click_map_dark: darken($black, 10%);
$col_fixed_label: #00BD08;
$col_fixed_label_dark: #4B8304;
+
+$button-color: #FF5308;
+$alt-background: #f5f5f5;
diff --git a/web/cobrands/zerotb/base.scss b/web/cobrands/zerotb/base.scss
index 179578fc5..4434dcae4 100644
--- a/web/cobrands/zerotb/base.scss
+++ b/web/cobrands/zerotb/base.scss
@@ -15,6 +15,37 @@ body {
font-weight: 300;
}
+input {
+ background-color: $alt-background;
+}
+
+#front-main {
+ h2 {
+ font-weight: 300;
+ }
+
+ #postcodeForm {
+ div {
+ border: 0px;
+ background: $primary_b;
+ input#pc {
+ background-color: $alt-background;
+ border: 0px;
+ border-radius: 0px;
+ box-shadow: none;
+ width: 80%;
+ }
+ input#sub {
+ background-color: $button-color;
+ border: 1px solid $alt-background;
+ border-radius: 5px;
+ color: white;
+ margin-left: 5px;
+ }
+ }
+ }
+}
+
#site-logo {
background: none;
text-indent: 0px;
diff --git a/web/cobrands/zerotb/layout.scss b/web/cobrands/zerotb/layout.scss
index c11594141..8bc314914 100644
--- a/web/cobrands/zerotb/layout.scss
+++ b/web/cobrands/zerotb/layout.scss
@@ -65,3 +65,20 @@ body {
padding: 0em 1em;
}
+#front-main {
+ #front-main-container {
+ max-width: 40em;
+ h2 {
+ text-align: left;
+ }
+ }
+ #postcodeForm {
+ div {
+ width: 30em;
+ input#pc {
+ max-width: none;
+ width: 27em;
+ }
+ }
+ }
+}