aboutsummaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
Diffstat (limited to 'web')
-rw-r--r--web/cobrands/whitelabel/_colours.scss30
-rw-r--r--web/cobrands/whitelabel/base.scss4
-rw-r--r--web/cobrands/whitelabel/layout.scss14
3 files changed, 48 insertions, 0 deletions
diff --git a/web/cobrands/whitelabel/_colours.scss b/web/cobrands/whitelabel/_colours.scss
new file mode 100644
index 000000000..1392663d5
--- /dev/null
+++ b/web/cobrands/whitelabel/_colours.scss
@@ -0,0 +1,30 @@
+/* LAYOUT */
+
+// If you are wanting a right-to-left layout, uncomment the following line.
+// $direction: right;
+
+/* COLOURS */
+
+$primary: gray;
+$primary_b: #000000;
+$primary_text: #222222;
+
+$base_bg: white;
+$base_fg: #000;
+
+$map_nav_bg: #eee;
+$nav_fg: #000;
+$nav_fg_hover: $primary;
+
+// Colour used for front page 'how to report a problem' steps
+$col_big_numbers: #ccc;
+
+$col_click_map: gray;
+
+$col_fixed_label: #00BD08;
+$col_fixed_label_dark: #4B8304;
+
+$menu-image: 'menu-black';
+
+$front_main_background: white;
+// $header-top-border: false;
diff --git a/web/cobrands/whitelabel/base.scss b/web/cobrands/whitelabel/base.scss
new file mode 100644
index 000000000..4f953084e
--- /dev/null
+++ b/web/cobrands/whitelabel/base.scss
@@ -0,0 +1,4 @@
+@import "../sass/h5bp";
+@import "./_colours";
+@import "../sass/mixins";
+@import "../sass/base";
diff --git a/web/cobrands/whitelabel/layout.scss b/web/cobrands/whitelabel/layout.scss
new file mode 100644
index 000000000..9c58b471d
--- /dev/null
+++ b/web/cobrands/whitelabel/layout.scss
@@ -0,0 +1,14 @@
+@import "_colours";
+@import "../sass/layout";
+
+.big-green-banner {
+ text-transform: none;
+}
+
+.nav-menu--main a.report-a-problem-btn {
+ color: white;
+}
+
+#front-main {
+ background-color: $front_main_background;
+}