ensl.org/app/assets/stylesheets/mixins/_buttons.scss

21 lines
346 B
SCSS
Raw Normal View History

2014-04-06 14:14:03 +00:00
/*
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;
}