2018-04-24 15:54:34 +03:00
|
|
|
@import 'utilities/borderradius';
|
|
|
|
|
2018-04-24 15:26:27 +03:00
|
|
|
.button,
|
|
|
|
button,
|
|
|
|
input[type='button'],
|
|
|
|
input[type='reset'],
|
|
|
|
input[type='submit'] {
|
|
|
|
background-color: $color-primary;
|
|
|
|
border: .1rem solid $color-primary;
|
|
|
|
color: $color-initial;
|
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 1.1rem;
|
|
|
|
font-weight: 700;
|
|
|
|
height: 3.8rem;
|
|
|
|
letter-spacing: .1rem;
|
|
|
|
line-height: 3.8rem;
|
|
|
|
padding: 0 3rem;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
|
|
|
text-transform: uppercase;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
2018-04-24 16:48:36 +03:00
|
|
|
@include border-radius(.4rem);
|
2018-04-24 15:54:34 +03:00
|
|
|
|
2018-04-24 15:26:27 +03:00
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
background-color: $color-secondary;
|
|
|
|
border-color: $color-secondary;
|
|
|
|
color: $color-initial;
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&[disabled] {
|
|
|
|
cursor: default;
|
|
|
|
opacity: .5;
|
|
|
|
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
background-color: $color-primary;
|
|
|
|
border-color: $color-primary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.button-outline {
|
|
|
|
background-color: transparent;
|
|
|
|
color: $color-primary;
|
|
|
|
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
background-color: transparent;
|
|
|
|
border-color: $color-secondary;
|
|
|
|
color: $color-secondary;
|
|
|
|
}
|
|
|
|
|
|
|
|
&[disabled] {
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
border-color: inherit;
|
|
|
|
color: $color-primary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.button-clear {
|
|
|
|
background-color: transparent;
|
|
|
|
border-color: transparent;
|
|
|
|
color: $color-primary;
|
|
|
|
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
background-color: transparent;
|
|
|
|
border-color: transparent;
|
|
|
|
color: $color-secondary;
|
|
|
|
}
|
|
|
|
|
|
|
|
&[disabled] {
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
color: $color-primary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|