ensl.org/app/assets/stylesheets/mixins/_buttons.scss
2014-04-07 11:04:56 +01:00

20 lines
346 B
SCSS

/*
Buttons
*/
@mixin button($background: $button-primary, $text: $button-text) {
font-family: "Montserrat", sans-serif;
font-size: 16px;
background-color: $background;
color: $text;
height: 44px;
padding: 11px 22px;
float: left;
margin: 0 20px 20px 0;
border: 0;
text-transform: uppercase;
}
button {
@include button;
}