mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-31 23:10:44 +00:00
34 lines
566 B
SCSS
34 lines
566 B
SCSS
/*
|
|
Buttons
|
|
*/
|
|
|
|
@mixin button($background: $button-primary, $text: $button-text) {
|
|
font-family: $montserrat;
|
|
font-size: em(16);
|
|
background-color: $background;
|
|
color: $text;
|
|
height: em(40);
|
|
padding: em(9) em(18);
|
|
float: left;
|
|
margin: 0 em(20) em(20) 0;
|
|
border: 0;
|
|
text-transform: uppercase;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button,
|
|
a.button {
|
|
@include button;
|
|
|
|
&.tiny {
|
|
background-color: $green;
|
|
border-radius: em(14);
|
|
height: em(25);
|
|
padding: em(1) em(12);
|
|
margin: 0 em(10) 0 0;
|
|
|
|
&:hover {
|
|
color: $light-gray;
|
|
}
|
|
}
|
|
}
|