diff options
author | Struan Donald <struan@exo.org.uk> | 2012-08-17 16:47:18 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2012-08-17 16:47:18 +0100 |
commit | 866ffe501cc1ffd9374be4b9066d95d65e5b080c (patch) | |
tree | 8738e52c3788ae71b54600294adb719984c1dbd9 | |
parent | 717a42d794d1b96a02d034d36a6058c4c46ee20d (diff) |
add zurich css that just copies fms
-rwxr-xr-x | bin/make_css | 1 | ||||
-rw-r--r-- | web/cobrands/zurich/_colours.scss | 9 | ||||
-rw-r--r-- | web/cobrands/zurich/base.scss | 7 | ||||
-rw-r--r-- | web/cobrands/zurich/config.rb | 25 | ||||
-rw-r--r-- | web/cobrands/zurich/layout.scss | 3 |
5 files changed, 45 insertions, 0 deletions
diff --git a/bin/make_css b/bin/make_css index 2a78feb59..65a429d3b 100755 --- a/bin/make_css +++ b/bin/make_css @@ -17,6 +17,7 @@ DIRECTORY=$(cd `dirname $0`/../web && pwd) compass compile --output-style compressed $DIRECTORY/cobrands/fixmystreet compass compile --output-style compressed $DIRECTORY/cobrands/bromley compass compile --output-style compressed $DIRECTORY/cobrands/barnet +compass compile --output-style compressed $DIRECTORY/cobrands/zurich compass compile --output-style compressed $DIRECTORY/cobrands/default # The rest are plain sass diff --git a/web/cobrands/zurich/_colours.scss b/web/cobrands/zurich/_colours.scss new file mode 100644 index 000000000..1a62d0282 --- /dev/null +++ b/web/cobrands/zurich/_colours.scss @@ -0,0 +1,9 @@ +/* COLOURS */ + +$primary: #FFD000; +$primary_b: #F3B11E; +$primary_text: #222; + +$contrast1: #00BD08; +$contrast1_dark: #4B8304; +$contrast2: #AA8D11; diff --git a/web/cobrands/zurich/base.scss b/web/cobrands/zurich/base.scss new file mode 100644 index 000000000..4594f832f --- /dev/null +++ b/web/cobrands/zurich/base.scss @@ -0,0 +1,7 @@ +@import "../fixmystreet/_h5bp"; +@import "./_colours"; +@import "../fixmystreet/_mixins"; +@import "compass"; + +@import "../fixmystreet/_base"; + diff --git a/web/cobrands/zurich/config.rb b/web/cobrands/zurich/config.rb new file mode 100644 index 000000000..cab97b18f --- /dev/null +++ b/web/cobrands/zurich/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/zurich/layout.scss b/web/cobrands/zurich/layout.scss new file mode 100644 index 000000000..abaa25224 --- /dev/null +++ b/web/cobrands/zurich/layout.scss @@ -0,0 +1,3 @@ +@import "_colours"; +@import "../fixmystreet/_layout"; + |