-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
267 lines (229 loc) · 5.43 KB
/
style.css
File metadata and controls
267 lines (229 loc) · 5.43 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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
/* General Reset */
body, h1, h2, h3, p, ul, li {
margin: 0;
padding: 0;
list-style: none;
box-sizing: border-box;
}
html, body {
height: 100%;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #2e2e2e; /* Darker background color */
color: #ddd; /* Light grey text for contrast */
overflow-x: hidden;
}
body {
display: flex;
flex-direction: column;
}
/* Container */
.container {
display: flex;
flex-direction: column;
min-height: 100vh;
}
/* Header */
header {
background-color: #1a1a1a; /* Dark background */
padding: 20px;
text-align: center;
border-bottom: 2px solid #00BFA6; /* Optional: Green border for emphasis */
}
header h1 {
margin: 0;
font-size: 2.5em;
color: #00BFA6; /* Green color for text */
}
/* Ensure consistent styling if any other selectors are interfering */
header h1 {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: bold;
animation: slideDown 1s ease-in-out;
}
@keyframes slideDown {
from { transform: translateY(-100%); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}
/* Navigation */
nav {
background-color: #1c1c1c; /* Darker nav background */
padding: 10px;
text-align: center;
}
nav ul {
display: flex;
justify-content: center;
margin: 0;
padding: 0;
animation: fadeIn 1.5s ease-in-out;
}
nav li {
margin: 0 10px;
}
nav a {
color: #fff;
text-decoration: none;
font-size: 1.2em;
padding: 10px 20px;
border-radius: 30px;
transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
nav a.active, nav a:hover {
background-color: #ff6f61; /* Orange for active/hover state */
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
transform: scale(1.1);
}
/* Main Content */
main {
flex: 1;
padding: 20px;
background: #3e3e3e; /* Slightly lighter dark background for contrast */
color: #ddd;
}
section {
margin-bottom: 20px;
padding: 30px;
background-color: #4a4a4a; /* Darker content background */
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
animation: fadeInUp 1s ease-in-out;
}
@keyframes fadeInUp {
from { transform: translateY(20px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}
h2, h3 {
color: #00BFA6; /* Teal accent for headings */
margin-bottom: 10px;
}
ul.contributors-list {
margin-top: 10px;
padding: 0;
}
ul.contributors-list li {
font-size: 1.2em;
padding: 5px 0;
color: #fff; /* White text for visibility */
}
/* Download Item */
.download-item {
margin-bottom: 20px;
padding: 20px;
background-color: #555; /* Background color for download items */
border-radius: 8px;
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
transition: transform 0.3s;
}
.download-item:hover {
transform: translateY(-5px); /* Subtle hover effect */
}
.download-button {
background-color: #ff6f61; /* Vibrant orange color */
color: #fff;
border: none;
padding: 15px 30px;
border-radius: 30px;
font-size: 1.1em;
font-weight: bold;
cursor: pointer;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.download-button:hover {
background-color: #e95e52; /* Darker shade on hover */
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
transform: scale(1.05);
}
/* Warning Section */
#warning {
background-color: #ff4c4c; /* Red background for warning */
color: #fff;
padding: 20px;
border-radius: 8px;
margin: 20px 0;
text-align: center;
}
#warning h2 {
font-size: 2.5em;
margin-bottom: 10px;
font-weight: bold;
}
#warning p {
font-size: 1.5em;
font-weight: bold;
line-height: 1.4;
}
/* Footer */
footer {
background-color: #1a1a1a; /* Dark background */
color: #fff; /* White text color */
padding: 10px;
text-align: center;
width: 100%;
position: relative;
bottom: 0;
margin-top: auto; /* Ensures footer sticks to the bottom */
font-size: 14px; /* Optional: adjusts text size */
animation: none;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
/* Media Queries for Responsiveness */
@media (max-width: 768px) {
nav ul {
flex-direction: column;
}
nav a {
margin-bottom: 10px;
display: block;
width: 80%;
margin: 10px auto;
}
.download-item {
flex-direction: column;
text-align: center;
}
.download-button {
margin-top: 10px;
width: 80%;
}
}
/* What Works Section */
.what-works {
display: flex;
flex-direction: column;
margin-bottom: 20px;
}
.what-works-item {
display: flex;
align-items: center;
padding: 10px;
margin-bottom: 10px;
background-color: #4a4a4a; /* Same as section background */
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.what-works-item .icon {
font-size: 1.5em;
margin-right: 10px;
}
.what-works-item.success .icon {
color: #00BFA6; /* Green for success (tick) */
}
.what-works-item.failure .icon {
color: #ff4c4c; /* Red for failure (cross) */
}
.what-works-item.warning .icon {
color: #ffcc00; /* Yellow for warning (⚠️) */
}
.what-works-item p {
margin: 0;
font-size: 1.2em;
color: #fff;
}