-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsupport.css
152 lines (128 loc) · 2.7 KB
/
support.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
/* Global Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: #f4f4f4; /* Light background color for contrast */
}
header {
background-color: #4CAF50;
color: white;
padding: 10px 0;
text-align: center;
position: fixed;
width: 100%;
top: 0;
left: 0;
z-index: 1000;
}
header nav {
display: flex;
justify-content: center;
}
header nav ul {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
}
header nav ul li {
position: relative; /* Required for dropdown positioning */
margin: 0 15px;
}
header nav ul li a {
color: white;
text-decoration: none;
padding: 10px;
display: inline-block;
transition: background-color 0.3s;
}
header nav ul li a:hover {
background-color: #45a049; /* Slightly different green on hover */
border-radius: 4px;
}
header nav .dropdown-content {
display: none;
position: absolute;
top: 100%;
left: 0;
background-color: #4CAF50;
border-radius: 4px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
z-index: 1000;
}
header nav .dropdown-content a {
color: white;
padding: 10px;
display: block;
text-decoration: none;
}
header nav .dropdown-content a:hover {
background-color: #45a049;
}
header nav .dropdown:hover .dropdown-content {
display: block;
}
main {
padding: 80px 20px 20px; /* Adjusted for fixed header */
}
.contact-form, .faqs, .resources {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
.contact-form form {
display: flex;
flex-direction: column;
}
.contact-form label {
margin-top: 10px;
}
.contact-form input, .contact-form textarea {
padding: 10px;
margin-top: 5px;
border: 1px solid #ccc;
border-radius: 4px;
}
.contact-form button {
margin-top: 10px;
padding: 10px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
.contact-form button:hover {
background-color: #45a049;
}
.faqs .faq-item {
margin-bottom: 10px;
}
.faqs h3 {
margin: 0;
color: #333;
}
.resources ul {
list-style-type: none;
padding: 0;
}
.resources ul li {
margin-bottom: 5px;
}
.resources ul li a {
color: #4CAF50;
text-decoration: none;
}
.resources ul li a:hover {
text-decoration: underline;
}
footer {
background-color: #4CAF50;
color: white;
text-align: center;
padding: 10px 0;
}