-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupport.css
More file actions
160 lines (136 loc) · 2.83 KB
/
Copy pathsupport.css
File metadata and controls
160 lines (136 loc) · 2.83 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
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #f4f4f4;
}
.header {
background-color: #004080;
color: white;
padding: 15px 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
.logout-btn {
background-color: #e60000;
border: none;
color: white;
padding: 8px 14px;
border-radius: 5px;
cursor: pointer;
}
.logout-btn:hover {
background-color: #cc0000;
}
.container {
max-width: 900px;
margin: 30px auto;
background-color: white;
padding: 25px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.support-info, .feedback-form {
margin-bottom: 30px;
}
h2 {
color: #333;
}
form label {
display: block;
margin-top: 15px;
}
input, textarea {
width: 100%;
padding: 10px;
margin-top: 5px;
border-radius: 4px;
border: 1px solid #ccc;
}
button[type="submit"] {
margin-top: 20px;
background-color: #004080;
color: white;
border: none;
padding: 10px 16px;
border-radius: 5px;
cursor: pointer;
}
button[type="submit"]:hover {
background-color: #003060;
}
#formMessage {
margin-top: 15px;
font-weight: bold;
color: green;
}
/* Responsive Design */
@media screen and (max-width: 600px) {
.header {
flex-direction: column;
align-items: flex-start;
}
.logout-btn {
margin-top: 10px;
}
.container {
padding: 15px;
}
}
/*footer*/
.footer {
background-color: #37643f;
color: white;
padding: 40px 20px;
font-family: sans-serif;
}
.footer-container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
max-width: 1200px;
margin: auto;
gap: 30px;
}
.footer-section {
flex: 1 1 200px;
min-width: 180px;
}
.footer-section h2,
.footer-section h3 {
margin-bottom: 15px;
font-weight: bold;
}
.footer-section p,
.footer-section a {
color: white;
text-decoration: none;
margin: 6px 0;
display: block;
}
.social-icons a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
margin-right: 10px;
border-radius: 50%;
background-color: #659459;
color: white;
font-size: 18px;
transition: background-color 0.3s ease;
}
.social-icons a:hover {
background-color: #547b4a;
}
@media (max-width: 768px) {
.footer-container {
flex-direction: column;
align-items: center;
text-align: center;
}
.footer-section {
margin-bottom: 30px;
}
}