69 lines
1.2 KiB
SCSS
69 lines
1.2 KiB
SCSS
.form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
|
|
* {
|
|
margin: 7px 0;
|
|
}
|
|
}
|
|
|
|
.button-submit {
|
|
background-color: var(--color-primary);
|
|
font-family: Montserrat;
|
|
border: 0;
|
|
color: #fff;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
line-height: 2;
|
|
outline: 0;
|
|
padding: 0.55rem 0.75rem;
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
vertical-align: middle;
|
|
width: 100%;
|
|
}
|
|
|
|
.button-telegram {
|
|
@extend .button-submit;
|
|
background-color: var(--color-primary);
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-transform: none;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
|
|
b {
|
|
line-height: 0;
|
|
}
|
|
|
|
animation: colorTransition 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
|
|
}
|
|
|
|
.button-telegram {
|
|
img {
|
|
margin: 0;
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
|
|
@keyframes colorTransition {
|
|
0% {
|
|
background-color: var(--color-primary);
|
|
}
|
|
100% {
|
|
background-color: #54a9eb;
|
|
}
|
|
}
|
|
|
|
.button-telegram-icon {
|
|
filter: brightness(0) invert(1);
|
|
margin: 0 !important;
|
|
margin-right: 13px !important;
|
|
margin-left: none !important;
|
|
}
|