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
422 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;
color: rgba(0, 0, 0, .8);
@include font-size(0.75);
line-height: 1;
padding: .6em 1em .4em;
&:hover {
border-color: $color__border-button-hover;
}
&:active,
&:focus {
border-color: $color__border-button-focus;
}
}