mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-04 00:40:55 +00:00
12ed7c90ae
Added new ISO country code flag icons to asset pipeline Lots and lots of new style changes Began converting to JS to coffeescript
22 lines
372 B
SCSS
22 lines
372 B
SCSS
/*
|
|
Buttons
|
|
*/
|
|
|
|
@mixin button($background: $button-primary, $text: $button-text) {
|
|
font-family: $monserrat;
|
|
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;
|
|
}
|