diff options
author | Struan Donald <struan@exo.org.uk> | 2014-03-19 17:51:44 +0000 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2014-04-08 13:21:12 +0100 |
commit | 39f714f27fd78ab3223d14510199bb09053d16f6 (patch) | |
tree | 8e42fc8863d8d8e60cb7f7dc13b9af540e6fd905 | |
parent | 36c4b4453badef9f9d162de326d36e6e17e172a5 (diff) |
change ZeroTB button colour to orange
-rw-r--r-- | web/cobrands/zerotb/base.scss | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/web/cobrands/zerotb/base.scss b/web/cobrands/zerotb/base.scss index 4434dcae4..4871575fb 100644 --- a/web/cobrands/zerotb/base.scss +++ b/web/cobrands/zerotb/base.scss @@ -73,3 +73,21 @@ input { display: none; } } + +button.green-btn, +input.green-btn, +.green-btn { + background: none; + background-color: $button-color; + border: 1px solid $alt-background; + border-radius: 5px; + color: white; +} + +button.green-btn:hover, +input.green-btn:hover, +.green-btn:hover { + background: none; + background-color: darken( $button-color, 10% ); + border: 1px solid $alt-background; +} |