mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-04 00:40:55 +00:00
21 lines
346 B
SCSS
21 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;
|
||
|
}
|