diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | web/cobrands/oxfordshire/_colours.scss | 9 | ||||
-rw-r--r-- | web/cobrands/oxfordshire/base.scss | 6 | ||||
-rw-r--r-- | web/cobrands/oxfordshire/config.rb | 25 | ||||
-rw-r--r-- | web/cobrands/oxfordshire/layout.scss | 2 |
5 files changed, 43 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 27d7ced66..05d2b275f 100644 --- a/.gitignore +++ b/.gitignore @@ -28,6 +28,7 @@ FixMyBarangay.po /web/cobrands/fixmystreet/*.css /web/cobrands/bromley/*.css /web/cobrands/fixmybarangay/*.css +/web/cobrands/oxfordshire/*.css /web/cobrands/stevenage/*.css /web/cobrands/barnet/*.css /web/cobrands/zurich/*.css diff --git a/web/cobrands/oxfordshire/_colours.scss b/web/cobrands/oxfordshire/_colours.scss new file mode 100644 index 000000000..1a62d0282 --- /dev/null +++ b/web/cobrands/oxfordshire/_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/oxfordshire/base.scss b/web/cobrands/oxfordshire/base.scss new file mode 100644 index 000000000..44954d909 --- /dev/null +++ b/web/cobrands/oxfordshire/base.scss @@ -0,0 +1,6 @@ +@import "../fixmystreet/_h5bp"; +@import "./_colours"; +@import "../fixmystreet/_mixins"; +@import "compass"; + +@import "../fixmystreet/_base"; diff --git a/web/cobrands/oxfordshire/config.rb b/web/cobrands/oxfordshire/config.rb new file mode 100644 index 000000000..471b4b008 --- /dev/null +++ b/web/cobrands/oxfordshire/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
\ No newline at end of file diff --git a/web/cobrands/oxfordshire/layout.scss b/web/cobrands/oxfordshire/layout.scss new file mode 100644 index 000000000..cad35e58f --- /dev/null +++ b/web/cobrands/oxfordshire/layout.scss @@ -0,0 +1,2 @@ +@import "_colours"; +@import "../fixmystreet/_layout"; |