_button.css
494 Bytes
.button {
display: inline-block;
min-width: 100px;
height: 40px;
border: 1px solid $black;
background: $white;
color: $black;
font-size: 20px;
&.button-solid {
background: $black;
color: $white;
}
&.button-round {
border-radius: 4px;
}
&.button-small {
min-width: 50px;
}
&.button-large {
min-width: 300px;
}
&:disabled {
border: 1px solid $grey;
color: $grey;
}
}