sass-site/source/assets/stylesheets/components/_buttons.scss
Jina Bolton 3b465c6ffa boom
2013-02-08 19:10:33 -08:00

29 lines
778 B
SCSS

// ===========================================================================
// BUTTONS
$button-background-color: $hopbush !default;
$button-background-hover-color: $bouquet !default;
$button-background-active-color: $venus !default;
$button-text-color: $white !default;
.button {
@extend %caps;
padding: 0 1em;
@include tappable;
border: 0;
@include border-radius(.25em);
width: 100%;
text-align: center;
vertical-align: middle;
background: $button-background-color;
@include box-shadow-both;
@include link($button-text-color, $button-text-color, $button-text-color);
@include text-shadow-dark;
#{$hover} { background: $button-background-hover-color; }
&:active { background: $button-background-active-color; }
}