diff options
author | Martin Wright <martin@mynameismartin.com> | 2015-08-07 15:26:00 +0100 |
---|---|---|
committer | Gareth Rees <gareth@mysociety.org> | 2015-08-21 11:03:48 +0100 |
commit | 51065ea404ad14fbc8b4da1f7d44b4d09a7871b2 (patch) | |
tree | d74d5e22355df180c2334308da64f3bb7cb9843f /assets | |
parent | 582f2f62ca05f7b35d8a7ec155b19201658fc3f6 (diff) |
add new button style for homepage
Diffstat (limited to 'assets')
-rw-r--r-- | assets/stylesheets/responsive/custom.scss | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/assets/stylesheets/responsive/custom.scss b/assets/stylesheets/responsive/custom.scss index 88631d1..e53886f 100644 --- a/assets/stylesheets/responsive/custom.scss +++ b/assets/stylesheets/responsive/custom.scss @@ -199,6 +199,19 @@ input.use-datepicker[type=text] { } } +@mixin button-quarternary($args...) { + @include button-base($args...); + background-color: $color_orange; + color: $color_white; + font-weight: normal; + &:hover, + &:active, + &:focus { + background-color: darken($color_orange, 7.5%); + } +} + + form input[type=submit], a.link_button_green, a.link_button_green_large { @include button-primary; text-decoration: none; |