forked from YadavAkhileshh/Alien-Invasion-Defense
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAlien.css
472 lines (416 loc) · 9.96 KB
/
Alien.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
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
/* Theme Variables */
:root {
/* Light Theme Colors */
--primary-color-light: #1d4ed8; /* Richer blue for primary elements */
--secondary-color-light: #e11d48; /* Softer red for accents */
--background-light: #f9fafb; /* Softer, off-white background */
--text-dark: #111827; /* Darker gray for better text contrast */
--card-bg-light: #ffffff; /* Pure white for card backgrounds */
--border-light: #2563eb; /* Rich blue to make the border stand out */
/* Dark Theme Colors */
--primary-color-dark: #00d0ff;
--secondary-color-dark: #ff0055;
--background-dark: #0a0b1a;
--text-light: #ffffff;
--card-bg-dark: rgba(10, 11, 26, 0.9);
--border-dark: #2d2d3a;
/* Common Variables */
--game-font: "Roboto", sans-serif; /* Updated to 'Roboto' */
--transition-speed: 0.3s;
}
/* Base Styles */
body {
margin: 0;
padding: 0;
font-family: var(--game-font); /* This line uses the updated font */
min-height: 100vh;
transition: background-color var(--transition-speed),
color var(--transition-speed);
}
/* Light Theme (default) */
body {
background-color: var(--background-light);
color: var(--text-dark);
}
/* Dark Theme */
body.dark-theme {
background-color: var(--background-dark);
color: var(--text-light);
background-image: radial-gradient(
circle at 50% 50%,
rgba(0, 255, 136, 0.1) 0%,
transparent 50%
),
linear-gradient(to bottom, #0a0b1a 0%, #1a1b3a 100%);
}
/* Other styles remain unchanged */
/* Game Container */
#gameContainer {
position: relative;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
box-sizing: border-box;
}
/* Canvas Styles */
#gameCanvas {
border: 2px solid;
border-radius: 8px;
transition: border-color var(--transition-speed),
box-shadow var(--transition-speed);
}
#gameOver {
display: none; /* Initially hidden until game over */
position: absolute;
top: 50%;
left: 15%;
transform: translate(-50%, -50%);
text-align: center;
background-color: rgba(
0,
0,
0,
0.7
); /* Optional: semi-transparent background */
color: white; /* Text color */
padding: 20px;
border-radius: 10px; /* Optional: rounded corners */
z-index: 1000; /* Ensure it appears above other content */
}
#message {
display: none; /* Initially hidden until game over */
position: absolute;
top: 50%;
left: 35%;
transform: translate(-50%, -50%);
text-align: center;
background-color: rgba(
242,
255,
0,
0.7
); /* Optional: semi-transparent background */
color: white; /* Text color */
padding: 20px;
border-radius: 10px; /* Optional: rounded corners */
z-index: 1000; /* Ensure it appears above other content */
}
body:not(.dark-theme) #gameCanvas {
border-color: var(--primary-color-light);
box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
background: var(--card-bg-light);
}
body.dark-theme #gameCanvas {
border-color: var(--primary-color-dark);
box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
background: var(--card-bg-dark);
}
/* Game Controls */
#gameControls {
max-width: 68%;
margin-left: 40px;
display: flex;
align-items: center;
padding: 20px;
border-radius: 8px;
margin-bottom: 20px;
margin-top: 20px;
transition: background-color var(--transition-speed),
border-color var(--transition-speed);
}
body:not(.dark-theme) #gameControls {
background: var(--card-bg-light);
border: 1px solid var(--border-light);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
body.dark-theme #gameControls {
background: var(--card-bg-dark);
border: 1px solid var(--primary-color-dark);
box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}
/* Theme Switch */
.theme-switch-wrapper {
display: flex;
align-items: center;
gap: 10px;
margin: 20px 0;
}
.theme-switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
.theme-switch input {
opacity: 0;
width: 0;
height: 0;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
transition: var(--transition-speed);
border-radius: 34px;
}
.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: white;
transition: var(--transition-speed);
border-radius: 50%;
}
input:checked + .slider {
background-color: var(--primary-color-dark);
}
input:checked + .slider:before {
transform: translateX(26px);
}
#gameOver {
display: none; /* Initially hidden until game over */
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
background-color: rgba(
0,
0,
0,
0.7
); /* Optional: semi-transparent background */
color: white; /* Text color */
padding: 20px;
border-radius: 10px; /* Optional: rounded corners */
z-index: 1000; /* Ensure it appears above other content */
}
/* Buttons */
button {
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;
font-family: var(--game-font);
text-transform: uppercase;
letter-spacing: 1px;
transition: all var(--transition-speed);
}
body:not(.dark-theme) button {
background: transparent;
color: var(--primary-color-light);
border: 2px solid var(--primary-color-light);
}
body.dark-theme button {
background: transparent;
color: var(--primary-color-dark);
border: 2px solid var(--primary-color-dark);
}
body:not(.dark-theme) button:hover {
background: var(--primary-color-light);
color: white;
box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
}
body.dark-theme button:hover {
background: var(--primary-color-dark);
color: var(--background-dark);
box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}
/* Sidebar */
/* .sidebar {
position: fixed;
right: 0;
top: 0;
width: 300px;
height: 100vh;
padding: 20px;
transition: background-color var(--transition-speed),
border-color var(--transition-speed);
} */
/* Responsive Sidebar Styling */
.sidebar {
position: fixed;
right: 0;
top: 0;
width: 300px;
max-width: 100%;
max-height: 92vh;
height: 100%;
padding: 20px;
background-color: var(--card-bg-light);
border-left: 2px solid var(--border-light);
transition: background-color var(--transition-speed),
border-color var(--transition-speed),
transform var(--transition-speed);
overflow-y: auto;
box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
}
body.dark-mode .sidebar {
background-color: var(--card-bg-dark);
border-left: 2px solid var(--border-dark);
}
.sidebar::-webkit-scrollbar {
width: 8px;
}
.sidebar::-webkit-scrollbar-thumb {
background-color: var(--border-light);
border-radius: 4px;
}
body.dark-mode .sidebar::-webkit-scrollbar-thumb {
background-color: var(--border-dark);
}
/* Responsive Breakpoints */
@media (max-width: 768px) {
.sidebar {
width: 100%;
transform: translateX(100%);
transition: transform var(--transition-speed);
}
/* To show the sidebar (toggle through JavaScript) */
.sidebar.open {
transform: translateX(0);
}
}
body:not(.dark-theme) .sidebar {
background: var(--card-bg-light);
border-left: 2px solid var(--border-light);
box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}
body.dark-theme .sidebar {
background: var(--card-bg-dark);
border-left: 2px solid var(--primary-color-dark);
box-shadow: -5px 0 15px rgba(0, 255, 136, 0.2);
}
/* Game Info Display */
#gameInfo {
display: flex;
gap: 20px;
margin: 20px 0;
padding: 15px;
border-radius: 8px;
font-size: 0.9em;
transition: background-color var(--transition-speed);
}
body:not(.dark-theme) #gameInfo {
background: rgba(0, 0, 0, 0.05);
}
body.dark-theme #gameInfo {
background: rgba(255, 255, 255, 0.1);
}
/* Instructions */
#instructions {
margin-top: 30px;
}
#instructionsTitle {
font-size: 1.2em;
margin-bottom: 15px;
transition: color var(--transition-speed);
}
body:not(.dark-theme) #instructionsTitle {
color: var(--primary-color-light);
}
body.dark-theme #instructionsTitle {
color: var(--primary-color-dark);
}
.controls {
margin-left: 33%;
}
/* responsive styling */
/* Hamburger icon styling */
.hamburger-icon {
display: none;
position: absolute;
top: 15px;
right: 2px;
cursor: pointer;
font-size: 1.5em;
z-index: 2000;
}
/* Display the sidebar and hamburger icon on screens <= 768px */
@media screen and (max-width: 768px) {
/* Hide the sidebar by default for smaller screens */
.sidebar {
display: none;
position: fixed;
right: 0;
width: 250px;
background-color: #333;
color: #fff;
height: 100%;
padding: 20px;
z-index: 1000;
overflow-y: auto;
transform: translateX(100%);
}
.hamburger-icon {
display: block;
}
/* Sidebar styling for slide-in effect */
.sidebar.active {
display: block;
transform: translateX(0);
}
.controls {
margin-right: 45%;
display: flex;
justify-content: center;
align-items: center;
}
}
/* Center the container */
.button-container {
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
flex-wrap: wrap; /* Allows wrapping when space is limited */
max-width: 100%;
margin: 0 auto; /* Center container */
padding: 10px 0;
}
/* Preserve button size and reduce gaps only when necessary */
.button-container button,
.button-container h2 {
flex: 0 1 auto; /* Keep buttons at their original size */
text-align: center;
}
/* Minimal gap on smaller screens */
@media (max-width: 768px) {
.button-container {
gap: 5px; /* Smaller gap between buttons */
}
}
#gameControls.header {
display: flex;
justify-content: space-between;
align-items: center;
}
/* Minimal gap on smaller screens */
@media (max-width: 768px) {
#gameControls.header {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
font-size: 10px;
gap: 10px;
padding: 8px;
margin-top: 8px;
}
#gameControls.header button,
#gameControls.header select {
padding: 6px 10px;
font-size: 0.9em;
width: auto; /* Keeps button widths adaptive */
}
#gameControls.header #pauseBtn {
font-size: 0.9em;
padding: 5px 8px;
}
}