You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
159 lines
2.8 KiB
159 lines
2.8 KiB
.button {
|
|
box-sizing: border-box;
|
|
border-radius: 100px;
|
|
background-color: rgba($color: $white, $alpha: 0);
|
|
transition: all ease-in-out 0.1s;
|
|
cursor: pointer;
|
|
|
|
&--lg {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 24px;
|
|
padding: 24px 58px 26px;
|
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
|
font-weight: 600;
|
|
font-size: 22px;
|
|
line-height: 140%;
|
|
text-align: center;
|
|
|
|
@include tablet {
|
|
justify-content: center;
|
|
gap: 20px;
|
|
max-width: 480px;
|
|
padding: 21px 30px;
|
|
font-size: 18px;
|
|
}
|
|
|
|
&::before {
|
|
transition: all ease-in-out 0.1s;
|
|
}
|
|
|
|
&--consult {
|
|
&::before {
|
|
content: '';
|
|
display: inline-block;
|
|
height: 22px;
|
|
width: 22px;
|
|
background: url(../img/icons/consultation.svg) center no-repeat;
|
|
}
|
|
}
|
|
|
|
&--coin {
|
|
&::before {
|
|
content: '';
|
|
display: inline-block;
|
|
height: 22px;
|
|
width: 22px;
|
|
background: url(../img/icons/ruble.svg) center no-repeat;
|
|
}
|
|
}
|
|
}
|
|
|
|
&--light {
|
|
color: $black;
|
|
background-color: $white;
|
|
|
|
&:hover {
|
|
color: $blue;
|
|
}
|
|
|
|
&:active {
|
|
color: $darkblue;
|
|
}
|
|
}
|
|
|
|
&--dark {
|
|
background-color: $blue;
|
|
color: $white;
|
|
border-color: rgba($color: $white, $alpha: 0.3);
|
|
|
|
&:hover {
|
|
color: $blue;
|
|
background-color: $white;
|
|
border-color: $blue;
|
|
}
|
|
|
|
&:active {
|
|
color: $darkblue;
|
|
border-color: $darkblue;
|
|
}
|
|
|
|
&::before {
|
|
filter: brightness(10);
|
|
}
|
|
|
|
&:hover::before,
|
|
&:active::before {
|
|
filter: brightness(1);
|
|
}
|
|
}
|
|
|
|
&--order {
|
|
display: inline-block;
|
|
padding: 14px 29px;
|
|
color: $grey;
|
|
font-weight: 500;
|
|
font-size: 14px;
|
|
letter-spacing: 0.01em;
|
|
border: 1px solid $lightgrey;
|
|
|
|
&:hover {
|
|
color: $white;
|
|
border-color: $blue;
|
|
background-color: $blue;
|
|
}
|
|
|
|
&:active {
|
|
border-color: $darkblue;
|
|
background-color: $darkblue;
|
|
}
|
|
|
|
&--light {
|
|
color: #dcdcdc;
|
|
border-color: rgba($color: $white, $alpha: 1.0);
|
|
}
|
|
|
|
&--white {
|
|
background-color: $white;
|
|
border-color: $white;
|
|
color: $darkgrey;
|
|
|
|
&:hover {
|
|
color: $white;
|
|
border-color: $white;
|
|
background-color: $blue;
|
|
}
|
|
|
|
&:active {
|
|
border-color: $white;
|
|
background-color: $darkblue;
|
|
}
|
|
}
|
|
}
|
|
|
|
&--prev,
|
|
&--next {
|
|
height: 60px;
|
|
width: 60px;
|
|
border: none;
|
|
border-radius: 30px;
|
|
background: url(../img/icons/prev.svg) center no-repeat;
|
|
background-color: $blue;
|
|
transition: background-color ease-in-out 0.1s;
|
|
cursor: pointer;
|
|
|
|
@include laptop {
|
|
height: 42px;
|
|
width: 42px;
|
|
background-size: 8px;
|
|
}
|
|
|
|
&:active {
|
|
background-color: $darkblue;
|
|
}
|
|
}
|
|
|
|
&--next {
|
|
transform: rotate(180deg);
|
|
}
|
|
}
|
|
|