diff options
-rw-r--r-- | web/cobrands/trinidadtobago/_colours.scss | 21 | ||||
-rw-r--r-- | web/cobrands/trinidadtobago/base.scss | 7 | ||||
-rw-r--r-- | web/cobrands/trinidadtobago/config.rb | 25 | ||||
-rw-r--r-- | web/cobrands/trinidadtobago/layout.scss | 6 |
4 files changed, 59 insertions, 0 deletions
diff --git a/web/cobrands/trinidadtobago/_colours.scss b/web/cobrands/trinidadtobago/_colours.scss new file mode 100644 index 000000000..03936ff10 --- /dev/null +++ b/web/cobrands/trinidadtobago/_colours.scss @@ -0,0 +1,21 @@ +/* COLOURS */ + +$trinidad_primary: #A90004; +$trinidad_secondary: white; + +$primary: $trinidad_primary; +$primary_b: #000000; +$primary_text: $trinidad_secondary; + +$base_bg: $trinidad_secondary; +$base_fg: #000; + +$map_nav_bg: $trinidad_secondary; +$nav_fg: #000; +$nav_fg_hover: $primary; + +$col_click_map: $trinidad_secondary; +$col_click_map_dark: darken($trinidad_secondary, 10%); + +$col_fixed_label: #00BD08; +$col_fixed_label_dark: #4B8304; diff --git a/web/cobrands/trinidadtobago/base.scss b/web/cobrands/trinidadtobago/base.scss new file mode 100644 index 000000000..9fccf92db --- /dev/null +++ b/web/cobrands/trinidadtobago/base.scss @@ -0,0 +1,7 @@ +@import "../sass/h5bp"; +@import "./_colours"; +@import "../sass/mixins"; +@import "compass"; + +@import "../sass/base"; + diff --git a/web/cobrands/trinidadtobago/config.rb b/web/cobrands/trinidadtobago/config.rb new file mode 100644 index 000000000..cab97b18f --- /dev/null +++ b/web/cobrands/trinidadtobago/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/trinidadtobago/layout.scss b/web/cobrands/trinidadtobago/layout.scss new file mode 100644 index 000000000..67cc7307f --- /dev/null +++ b/web/cobrands/trinidadtobago/layout.scss @@ -0,0 +1,6 @@ +@import "_colours"; +@import "../sass/layout"; + +.big-green-banner { + background-color: $trinidad_primary; +} |