-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.css
179 lines (154 loc) · 3.32 KB
/
contact.css
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
#contact {
background: white url(../image/contact_bg.png) no-repeat center top;
background-size: cover;
height: 1409px;
}
#contact .title {
padding-top: 168px;
text-align: center;
}
#contact .title h3 {
font-size: 24px;
line-height: 72px;
color: var(--heading);
text-transform: uppercase;
font-weight: normal;
}
#contact .title p {
margin-top: 6px;
font-size: 60px;
line-height: 90px;
color: var(--text_black);
}
#contact #methods-contact {
margin-top: 100px;
}
#contact #methods-contact form p {
font-size: 42px;
line-height: 54px;
color: #111111;
font-weight: bold;
}
form {
display: flex;
flex-direction: column;
max-width: 470px;
gap: 20px 0;
}
#username {
margin-top: 26px;
}
form input[type="text"],
form input[type="email"] {
display: block;
background-color: #fff;
font-size: 20px;
line-height: 28px;
padding: 26px 30px;
box-shadow: 0px 18px 48px rgba(0,0,0,0.06);
border-radius: 8px;
}
form textarea {
display: block;
background-color: #fff;
font-size: 20px;
height: 214px;
padding: 26px 30px;
box-shadow: 0px 18px 48px rgba(0,0,0,0.06);
border-radius: 8px;
}
form button {
display: block;
width: 240px;
background-color: var(--heading);
font-size: 24px;
line-height: 72px;
color: white;
font-weight: normal;
text-align: center;
border-radius: 6px;
}
#methods-contact {
display: flex;
}
#methods-contact .information-contact {
max-width: 470px;
margin-left: 230px;
margin-top: 100px;
}
.information-contact > p {
font-size: 24px;
line-height: 36px;
color: #5e5858;
}
.information-contact div {
max-width: 300px;
}
.information-contact .phone {
display: flex;
gap: 0px 20px;
}
.information-contact .phone div:first-child {
content: " ";
display: flex;
width: 50px;
height: 50px;
border-radius: 50%;
background: url(../image/phone_number.png) #fe6686 no-repeat center center;
}
.information-contact .phone div:last-child {
display: flex;
text-align: justify;
flex-direction: column;
justify-content: center;
align-items: flex-start;
gap: 12px;
}
.information-contact .email {
display: flex;
gap: 0px 20px;
}
.information-contact .email div:first-child {
content: " ";
display: flex;
width: 50px;
height: 50px;
border-radius: 50%;
background: url(../image/mail.png) #54d6a1 no-repeat center center;
}
.information-contact .email div:last-child {
display: flex;
text-align: justify;
flex-direction: column;
justify-content: center;
align-items: flex-start;
gap: 12px;
}
.information-contact .location {
display: flex;
gap: 0px 20px;
}
.information-contact .location div:first-child {
content: " ";
display: flex;
width: 50px;
height: 50px;
border-radius: 50%;
background: url(../image/location.png) #fe9a3f no-repeat center center;
}
.information-contact .location div:last-child {
display: flex;
text-align: justify;
flex-direction: column;
justify-content: center;
align-items: flex-start;
gap: 12px;
}
#methods-contact .information-contact {
display: flex;
max-width: 470px;
margin-left: 230px;
margin-top: 100px;
flex-direction: column;
gap: 40px;
}