diff options
author | Struan Donald <struan@exo.org.uk> | 2014-03-14 14:57:24 +0000 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2014-04-08 13:21:10 +0100 |
commit | 7187775c54baf4f1aa30c3cc5230b7656df1b495 (patch) | |
tree | 01c79b60886aa3506ac96a905019552b6508666e | |
parent | a3f5ea204ae4383e651f181dee1ef90b77193aac (diff) |
import base styles with colour changes
Change colour scheme to black and white
-rw-r--r-- | web/cobrands/zerotb/_colours.scss | 21 | ||||
-rw-r--r-- | web/cobrands/zerotb/base.scss | 6 | ||||
-rw-r--r-- | web/cobrands/zerotb/config.rb | 25 | ||||
-rw-r--r-- | web/cobrands/zerotb/layout.scss | 2 |
4 files changed, 54 insertions, 0 deletions
diff --git a/web/cobrands/zerotb/_colours.scss b/web/cobrands/zerotb/_colours.scss new file mode 100644 index 000000000..8118feaf6 --- /dev/null +++ b/web/cobrands/zerotb/_colours.scss @@ -0,0 +1,21 @@ +/* COLOURS */ + +$white: #ffffff; +$black: #000000; + +$primary: $black; +$primary_b: $black; +$primary_text: $white; + +$base_bg: $white; +$base_fg: #000; + +$map_nav_bg: $black; +$nav_fg: #ffffff; +$nav_fg_hover: #000; + +$col_click_map: $black; +$col_click_map_dark: darken($black, 10%); + +$col_fixed_label: #00BD08; +$col_fixed_label_dark: #4B8304; diff --git a/web/cobrands/zerotb/base.scss b/web/cobrands/zerotb/base.scss new file mode 100644 index 000000000..7c303e874 --- /dev/null +++ b/web/cobrands/zerotb/base.scss @@ -0,0 +1,6 @@ +@import "../sass/h5bp"; +@import "./_colours"; +@import "../sass/mixins"; +@import "compass"; + +@import "../sass/base"; diff --git a/web/cobrands/zerotb/config.rb b/web/cobrands/zerotb/config.rb new file mode 100644 index 000000000..cab97b18f --- /dev/null +++ b/web/cobrands/zerotb/config.rb @@ -0,0 +1,25 @@ +# Require any additional compass plugins here. + +# Set this to the root of your project when deployed: +http_path = "/" +css_dir = "" +sass_dir = "" +images_dir = "" +javascripts_dir = "" + +# You can select your preferred output style here (can be overridden via the command line): +# output_style = :expanded or :nested or :compact or :compressed + +# To enable relative paths to assets via compass helper functions. Uncomment: +# relative_assets = true + +# To disable debugging comments that display the original location of your selectors. Uncomment: +# line_comments = false + +# If you prefer the indented syntax, you might want to regenerate this +# project again passing --syntax sass, or you can uncomment this: +# preferred_syntax = :sass +# and then run: +# sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass + +line_comments = false # by Compass.app diff --git a/web/cobrands/zerotb/layout.scss b/web/cobrands/zerotb/layout.scss new file mode 100644 index 000000000..69e455aa5 --- /dev/null +++ b/web/cobrands/zerotb/layout.scss @@ -0,0 +1,2 @@ +@import "_colours"; +@import "../sass/layout"; |