Lightweight CSS Framework for Building Apps and Websites https://crispy-css.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

34 lines
585 B

/**
* components: button
*
*
* @author Björn Hase
*
*/
$crispy__button__padding: ($crispy__spacing * 0.5) $crispy__spacing !default;
@mixin crispy__button() {
.button {
position: relative;
display: inline-block;
text-decoration: none;
vertical-align: middle;
appearance: none;
padding: $crispy__button__padding;
&--wide {
width: 100%;
}
&:hover {
cursor: pointer;
text-decoration: none;
}
&:focus {
outline: none;
}
}
}