-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContactus.css
84 lines (70 loc) · 1.34 KB
/
Contactus.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
/* Contact Us Section */
.contact-us {
background-color: #ffffff;
padding: 60px;
text-align: center;
}
.contact-us h1 {
margin-top: 10px;
font-size: 36px;
margin-bottom: 20px;
color: #333;
}
.contact-us form {
max-width: 600px;
margin: 0 auto;
}
.contact-us label {
display: block;
margin-bottom: 10px;
font-size: 18px;
color: #333;
}
.contact-us input,
.contact-us textarea {
border: none;
border-bottom: 2px solid #D1D1D4;
padding: 12px 15px;
margin: 8px 0;
width: 100%;
}
.contact-us input:focus,
.contact-us textarea:focus {
outline: none;
box-shadow: 0px 0px 10px #ccc;
}
.contact-us button {
display: block;
width: 100%;
background-color: #333;
color: #fff;
border: none;
border-radius: 5px;
padding: 10px;
font-size: 18px;
cursor: pointer;
transition: all 0.3s ease-in-out;
}
.contact-us button:hover {
background-color: #666;
}
/* Location Section */
.location {
background-color: #333;
color: #fff;
text-align: center;
padding: 50px;
}
.location h2 {
font-size: 36px;
margin-bottom: 20px;
}
.location #map {
margin: 0 auto;
max-width: 600px;
}
.location #map img {
max-width: 100%;
height: auto;
border-radius: 5px;
}