This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
_s/sass/forms/_buttons.scss

23 lines
419 B
SCSS
Raw Normal View History

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
border: 1px solid;
border-color: $color__border-button;
2014-09-14 17:26:29 +00:00
border-radius: 3px;
background: $color__background-button;
2020-04-05 20:49:27 +00:00
color: rgba(0, 0, 0, 0.8);
2020-04-23 16:16:40 +00:00
font-size: 0.75rem;
line-height: 1;
2020-04-05 20:49:27 +00:00
padding: 0.6em 1em 0.4em;
&:hover {
border-color: $color__border-button-hover;
}
&:active,
&:focus {
border-color: $color__border-button-focus;
}
}