ORIENT/themes/modern2/template/css/components/3-page/contact.scss

103 lines
2.1 KiB
SCSS

.form {
&__title {
font-weight: 700;
color: $text-light-black;
font-size: $h3-size;
line-height: $h3-height;
margin-bottom: 80px;
}
&__row {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 30px;
}
&__input {
display: flex;
flex-direction: column;
-ms-flex-direction: column;
label {
display: block;
font-size: $h4-size;
line-height: $h4-height;
font-weight: 700;
color: $text-light-black;
margin-bottom: 20px;
}
input {
width: calc(100% - 40px);
padding: 0 20px;
height: 60px;
border-radius: 5px;
border: 1px solid #c9c9c9;
font-size: $h4-size;
line-height: $h4-size;
color: $text-light-black;
}
&:last-child {
width: calc(50% - 20px);
margin-left: 20px;
}
&:first-child {
width: calc(50% - 20px);
margin-right: 20px;
}
}
&__input-bg {
width: 100%;
label {
display: block;
font-size: $h4-size;
line-height: $h4-height;
font-weight: 700;
color: $text-light-black;
margin-bottom: 20px;
}
input {
width: calc(100% - 40px);
padding: 0 20px;
height: 60px;
border-radius: 5px;
border: 1px solid #c9c9c9;
font-size: $h4-size;
line-height: $h4-size;
color: $text-light-black;
}
}
&__textarea {
width: 100%;
margin-top: 30px;
label {
display: block;
font-size: $h4-size;
line-height: $h4-height;
font-weight: 700;
color: $text-light-black;
margin-bottom: 20px;
}
textarea {
width: calc(100% - 40px);
padding: 20px;
border-radius: 5px;
border: 1px solid #c9c9c9;
}
}
&__btn {
width: 250px;
background: $main-color;
text-align: center;
color: $text-color-white;
font-weight: 700;
padding: 14px;
border-radius: 5px;
font-size: $h4-size;
line-height: $h4-height;
margin-top: 30px;
}
}
.main {
&__inner.contact {
padding: 80px 0 160px 0;
}
}