-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.css
More file actions
167 lines (141 loc) · 2.74 KB
/
contact.css
File metadata and controls
167 lines (141 loc) · 2.74 KB
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
/* Hero Section */
.hero {
background-color: #ff6600;
color: #ffffff;
padding: 3rem 0;
text-align: center;
}
.hero h1 {
margin-bottom: 1rem;
}
.hero p {
margin-bottom: 2rem;
font-size: 1.125rem;
}
/* Contact Section */
.contact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}
/* Contact Form */
.contact-form {
background-color: #f5f5f5;
padding: 2rem;
border-radius: 1rem;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.contact-form h3 {
color: #ff6600;
margin-bottom: 1.5rem;
}
.contact-form textarea {
min-height: 120px;
resize: vertical;
}
.contact-form .btn {
width: 100%;
padding: 1rem;
font-size: 1rem;
margin-top: 1rem;
border: 1px solid black;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
width: 100%;
padding: 0.5rem 1rem;
border: 1px solid #e0e0e0;
border-radius: 0.5rem;
font-size: 1rem;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
outline: none;
border-color: #ff6600;
box-shadow: 0 0 0 3px rgba(255,102,0,0.1);
}
/* Map Section */
.map-section {
padding: 1.5rem;
background-color: #f5f5f5;
border-radius: 1rem;
margin-bottom: 0.5rem;
}
.map-section h3 {
color: #ff6600;
margin-bottom: 0.5rem;
}
.map-section p {
color: #666666;
margin-bottom: 0.25rem;
}
/* Business Hours */
.business-hours {
background-color: #ffffff;
padding: 2rem;
border-radius: 1rem;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
margin-top: 2rem;
}
.business-hours h3 {
color: #ff6600;
margin-bottom: 1rem;
}
/* Dark Theme Styles */
.dark-theme .contact-form,
.dark-theme .map-section,
.dark-theme .business-hours {
background-color: #2d2d2d;
color: #f0f0f0;
border-color: #444;
}
.dark-theme .contact-form label,
.dark-theme .map-section p,
.dark-theme .business-hours p {
color: #e0e0e0;
}
.dark-theme .contact-form input,
.dark-theme .contact-form textarea,
.dark-theme .contact-form select {
background-color: #3d3d3d;
border-color: #555;
color: #f0f0f0;
}
.dark-theme .contact-form input::placeholder,
.dark-theme .contact-form textarea::placeholder {
color: #aaa;
}
.dark-theme .business-hours {
background-color: #2d2d2d;
border: 1px solid #444;
}
.dark-theme .contact-form .btn {
background-color: #ff8c42;
color: #fff;
border-color: #ff8c42;
}
.dark-theme .contact-form .btn:hover {
background-color: #ff6600;
border-color: #ff6600;
}
/* Responsive Design */
@media (max-width: 768px) {
.contact-grid {
grid-template-columns: 1fr;
}
.map-container iframe {
height: 300px;
}
}
@media (max-width: 480px) {
.contact-info,
.contact-form {
padding: 1.5rem;
}
.map-container iframe {
height: 250px;
}
}