This repository was archived by the owner on Apr 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_contact_form.scss
156 lines (146 loc) · 3.68 KB
/
_contact_form.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/* 21. Contact */
.contact-form-main{
position: relative;
//Left Img
.from-left{
position: absolute;
top: 0;
left: 0;
width: 46%;
img{
width: 100%;
height: 837px;
@media #{$lg}{
height: 831px;
}
}
}
.form-tittle{
padding: 83px 51px 0px 67px;
@media #{$xs}{
padding: 50px 10px 0px 10px;
}
}
.form-wrapper{
background: #f7fdff;
}
#contact-form{
padding: 61px 51px 79px 69px;
@media #{$xs}{
padding: 13px 25px 76px 25px;
}
@media #{$sm}{
padding: 13px 25px 76px 25px;
}
position: relative;
input {
background:none;
height: 60px;
width: 100%;
padding: 10px 25px;
padding-right: 30px;
border: 0;
color: #112957;
font-weight: 500;
text-transform: capitalize;
border-radius: 0px;
border-bottom: 2px solid #e9f0f4;
&::-moz-placeholder {
color: #112957;
font-size: 16px;
font-weight: 300;
transition: .4s;
}
&:focus::-webkit-input-placeholder {
opacity: 0;
-webkit-transition: .4s;
-o-transition: .4s;
transition: .4s;
}
.list {
width: 100%;
border-radius: 0;
}
}
.nice-select {
background: none;
height: 60px;
width: 100%;
border: 0;
color: #112957;
font-weight: 300;
font-size: 16px;
text-transform: capitalize;
padding-top: 10px;
border-radius: 0px;
border-bottom: 2px solid #e9f0f4;
&::after {
border-bottom: 2px solid #a3a3a3;
border-right: 2px solid #a3a3a3;
height: 7px;
right: 41px;
width: 7px;
}
&.open .list {
width: 100%;
border-radius: 0;
}
.option {
color: #a3a3a3;
}
}
textarea {
color: #112957;
background: none;
font-weight: 500;
letter-spacing: 2px;
text-transform: capitalize;
height: 130px;
width: 100%;
padding: 30px 21px;
border: 0;
border-radius: 0px;
border-bottom: 2px solid #e9f0f4;
@media #{$md}{
padding: 30px 42px;
}
@media #{$sm}{
padding: 30px 24px;
}
@media #{$xs}{
padding: 30px 25px;
}
&::placeholder {
color: #112957;
font-size: 16px;
font-weight: 300;
transition: .4s;
}
}
}
}
.contact {
border: 1px solid #eaedff;
padding: 40px 10px;
& i {
background: #8fb569;
font-size: 40px;
height: 150px;
width: 150px;
color: #ffffff;
border-radius: 50%;
line-height: 135px;
border: 10px solid #fff;
-webkit-box-shadow: 0px 16px 32px 0px rgba(206, 226, 255, 0.4);
box-shadow: 0px 16px 32px 0px rgba(206, 226, 255, 0.4);
margin-bottom: 30px;
}
& h3 {
font-size: 26px;
margin-bottom: 15px;
}
& p {
margin: 0;
padding: 0 50px;
}
}