mirror of
https://github.com/scratchfoundation/scratchx.git
synced 2024-11-25 09:08:28 -05:00
31 lines
628 B
SCSS
31 lines
628 B
SCSS
#{$all-button-inputs},
|
|
button {
|
|
@include appearance(none);
|
|
-webkit-font-smoothing: antialiased;
|
|
background-color: $action-color;
|
|
border-radius: $base-border-radius;
|
|
border: none;
|
|
color: #fff;
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
font-family: $base-font-family;
|
|
font-size: $base-font-size;
|
|
font-weight: 600;
|
|
line-height: 1;
|
|
padding: 0.75em 1em;
|
|
text-decoration: none;
|
|
user-select: none;
|
|
vertical-align: middle;
|
|
white-space: nowrap;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
background-color: darken($action-color, 15%);
|
|
color: #fff;
|
|
}
|
|
|
|
&:disabled {
|
|
cursor: not-allowed;
|
|
opacity: 0.5;
|
|
}
|
|
}
|