-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
466 lines (404 loc) · 13.3 KB
/
main.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gen Player</title>
<script src="https://kit.fontawesome.com/a2b3da0c65.js" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Share+Tech&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Raleway&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Raleway&family=Titillium+Web&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet" />
<link rel="icon" href="/images/logo2.png">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: url(images/background.jpg) fixed;
background-size: cover;
background-position: center;
scroll-behavior: smooth;
height: 350vh;
}
header {
width: 100%;
height: 100px;
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
z-index: 99;
box-shadow: 0 0 10px #000;
background: rgba(255, 255, 255, 0.04);
backdrop-filter: blur(0.4rem);
-webkit-backdrop-filter: blur(0.4rem);
}
#chk1 {
display: none;
}
i {
color: #fff;
cursor: pointer;
}
header .logo {
flex: 1;
/* font-family: 'Raleway'; */
font-family: 'Titillium Web';
/* text-transform: uppercase; */
color: #fff;
font-weight: bold;
margin-left: 50px;
pointer-events: none;
font-size: 15px;
}
header ul {
flex: 2;
display: flex;
justify-content: space-evenly;
}
header ul li {
list-style: none;
}
header ul li a {
text-decoration: none;
color: #fff;
font-weight: 600;
font-family: 'Raleway';
text-transform: uppercase;
padding: 10px 15px;
}
header ul li a:hover {
border-bottom: 2px solid rgb(0, 247, 255);
color: #fff;
-webkit-animation: glow 1s ease-in-out infinite alternate;
-moz-animation: glow 1s ease-in-out infinite alternate;
animation: glow 1s ease-in-out infinite alternate;
}
@-webkit-keyframes glow {
from {
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px aqua, 0 0 40px aqua, 0 0 50px aqua, 0 0 60px aqua, 0 0 70px aqua;
}
to {
text-shadow: 0 0 20px #fff, 0 0 30px lime, 0 0 40px lime, 0 0 50px lime, 0 0 60px lime, 0 0 70px lime, 0 0 80px lime;
}
}
header .menu {
font-size: 2.5em;
display: none;
}
@media(max-width:1000px) {
.search-box button {
position: absolute;
}
header ul {
position: fixed;
top: 100px;
right: -100%;
background: rgba(0, 0, 0, 0.5);
height: calc(100vh - 100px);
width: 50%;
flex-direction: column;
align-items: center;
transition: right 0.5s linear;
}
header .menu {
display: block;
width: 100px;
text-align: center;
}
#chk1:checked~ul {
right: 0;
}
}
.default {
position: relative;
top: 20vh;
margin: auto;
width: 90%;
height: 75vh;
border-radius: 25px;
padding: 2.5rem;
padding-top: 5.5rem;
background: rgba(255, 255, 255, 0.01);
box-shadow: 0 0 10px #fff;
backdrop-filter: blur(1rem);
-webkit-backdrop-filter: blur(1rem);
color: #fff;
text-align: center;
justify-content: center;
align-items: center;
font-family: 'Poppins';
}
.default-big {
position: relative;
top: 40vh;
margin: auto;
width: 90%;
min-height: 75vh;
height: auto;
border-radius: 25px;
padding: 2.5rem;
padding-top: 5.5rem;
background: rgba(255, 255, 255, 0.01);
box-shadow: 0 0 10px #fff;
backdrop-filter: blur(1rem);
-webkit-backdrop-filter: blur(1rem);
color: #fff;
text-align: center;
justify-content: center;
align-items: center;
font-family: 'Poppins';
}
.s-3 {
position: relative;
top: 55vh;
margin: auto;
width: 90%;
min-height: 75vh;
height: auto;
border-radius: 25px;
padding: 2.5rem;
padding-top: 5.5rem;
background: rgba(255, 255, 255, 0.01);
box-shadow: 0 0 10px #fff;
backdrop-filter: blur(1rem);
-webkit-backdrop-filter: blur(1rem);
color: #fff;
text-align: center;
justify-content: center;
align-items: center;
font-family: 'Poppins';
}
.s-4 {
position: relative;
top: 70vh;
margin: auto;
width: 90%;
min-height: 75vh;
height: auto;
border-radius: 25px;
padding: 2.5rem;
padding-top: 5.5rem;
background: rgba(255, 255, 255, 0.01);
box-shadow: 0 0 10px #fff;
backdrop-filter: blur(1rem);
-webkit-backdrop-filter: blur(1rem);
color: #fff;
text-align: center;
justify-content: center;
align-items: center;
font-family: 'Poppins';
}
.img {
position: relative;
margin: auto;
border-radius: 50%;
width: 30vh;
}
.s-1-t {
position: relative;
top: auto;
margin: auto;
font-size: 2rem;
font-family: 'Titillium Web';
font-weight: bold;
}
.small-1 {
position: relative;
top: auto;
font-size: 1rem;
font-family: 'QuickSand';
}
.small {
position: relative;
top: auto;
font-size: 1rem;
font-family: 'Share Tech';
}
.ab {
position: relative;
top: 0;
}
iframe {
color: #fff;
position: relative;
top: 0px;
margin: auto;
min-height: 70vh;
width: 90%;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border-radius: 25px;
}
iframe::-webkit-scrollbar {
width: 0px;
}
.cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
padding: 20px;
grid-gap: 40px;
}
.card {
background-color: rgba(0, 0, 0, 0.01);
margin-top: 5rem;
border-radius: 20px;
box-shadow: 0 0 30px rgba(255, 255, 255, 0.18);
}
.card:hover {
box-shadow: 0 0 40px rgba(255, 255, 255, 0.28);
cursor: pointer;
/* border: rgba(255, 255, 255, 0.5); */
}
.container {
position: relative;
clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
img {
width: 100%;
display: block;
border-radius: 20px 20px 0 0;
}
.container:after {
content: "";
height: 100%;
width: 100%;
position: absolute;
top: 0;
left: 0;
border-radius: 20px 20px 0 0;
opacity: 0.7;
}
.card1>.container:after {
background-image: linear-gradient(135deg,
#0100ec,
#fb36f4);
}
.card2>.container:after {
background-image: linear-gradient(135deg,
#2bdce3,
#42ffdb);
}
.card3>.container:after {
background-image: linear-gradient(135deg,
#ffab1d,
#f8501c);
}
.details {
padding: 20px 10px;
}
.details>h3 {
color: #ffffff;
font-weight: 600;
font-size: 18px;
margin: 10px 0 15px 0;
}
.details>p {
color: #a0a0a0;
font-size: 15px;
line-height: 30px;
font-weight: 400;
}
.hallo {
color: #a0a0a0 !important;
font-size: 15px !important;
line-height: 30px !important;
font-weight: 400 !important;
font-family: 'Quicksand' !important;
}
a {
color: #fff;
text-decoration: none;
}
a:hover {
color: #a0a0a0;
}
h3 {
font-family: 'Titillium Web';
}
#plst {
font-family: 'Titillium Web';
}
</style>
</head>
<body>
<header>
<div class="logo">
<h1>Gen Player™</h1>
</div>
<ul>
<li><a href="">Home</a></li>
<li><a href="#player">Player</a></li>
<li><a href="#contact">Contact</a></li>
<li>
<a href="https://www.youtube.com/channel/UCxQjKK2iZErHZw4xshdWz8w" target="_blank"><i
class="fa fa-youtube"></i></a>
<a href="https://github.com/NAVASHEN" target="_blank"><i class="fa fa-github"></i></a>
<a href="#reddit" target="_blank"><i class="fa fa-google"></i></a>
</li>
</ul>
<div class="menu">
<label for="chk1">
<i class="fa fa-bars"></i>
</label>
</div>
</header>
<section class="default">
<a name="home"></a>
<p class="s-1-t">Gen Player™</p>
<img src="images/logo2.png" class="img">
<p class="small-1">Fast • Simple • Reliable • Encrypted</p>
<p class="small">A project under <b>Next Gen Inside™</b></p>
</section>
<a name="player" class="ab"></a>
<section class="default-big">
<h1 id="plst">Player Styles</h1>
<div class="card card1">
<div class="container">
<img src="p-1.png" alt="">
</div>
<div class="details"><a href="S-1/style1.html">
<h3>Neumorphic Style</h3>
<p class="hallo">One of the Trending styles in 2022.</p>
</div>
</a>
</div>
<div class="card card2">
<div class="container">
<img src="p-2.png" alt="">
</div>
<div class="details"><a href="S-2/style2.html">
<h3>Glassmorphism Style</h3>
<p class="hallo">The style used for this website :)</p>
</div>
</a>
</div>
<div class="card card3">
<div class="container">
<img src="p-3.png" alt="">
</div>
<div class="details"><a href="#">
<h3>Coming Soon</h3>
<p class="hallo">Building in Progress :)</p>
</div>
</div>
</div>
</section>
<a name="contact" class="ab"></a>
<section class="s-3">
<iframe
src="https://docs.google.com/forms/d/e/1FAIpQLScVldQZHUEwy0bVs743NW0v4MWmhr0bdUOk9xiegN7duLQvvA/viewform?embedded=true"
frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</section>
</body>
</html>