-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
524 lines (474 loc) · 17.1 KB
/
index.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
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- Flags CSS -->
<link rel="stylesheet" href="css/flag-icon.min.css">
<!-- Main CSS -->
<link rel="stylesheet" href="css/style.css">
<title>Gameter</title>
</head>
<body>
<div class="container mt-3">
<div id="notification-area" class="col">
<!-- Test alert -->
<div class="alert alert-secondary alert-dismissible fade show" role="alert">
<strong>Debug</strong>
<a class="text-secondary" href="#footer">Take me to the bottom</a>
<a class="text-secondary" href="player.html">Example player page</a>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
</div>
</div>
<!-- Header & Logo -->
<header id="header" class="container mt-3 mb-5">
<div class="row align-items-center">
<div class="col text-center">
<img src="images/logo.png" alt="gameter logo">
<h1 class="display-4">gameter</h1>
</div>
</div>
</header>
<!-- Search bar -->
<div id="main-search" class="container">
<div class="row justify-content-center align-items-center">
<div class="col-12 text-center mb-2">
<!-- Country select -->
<span class="dropdown">
<button type="button" class="btn btn-lg btn-custom dropdown-toggle font-weight-normal pr-0" data-toggle="dropdown" title="Select your community">
<span class="flag-icon flag-icon-pl"></span>
Poland
</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-pl"></span> Poland
</a>
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-ar"></span> Argentina
</a>
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-br"></span> Brasil
</a>
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-dk"></span> Denmark
</a>
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-de"></span> Deutshland
</a>
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-es"></span> Espana
</a>
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-fr"></span> France
</a>
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-hr"></span> Hrvatska
</a>
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-it"></span> Italia
</a>
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-hu"></span> Magyarország
</a>
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-mx"></span> Mexico
</a>
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-nl"></span> Nederland
</a>
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-no"></span> Norge
</a>
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-pt"></span> Portugal
</a>
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-ro"></span> Romania
</a>
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-si"></span> Slovenija
</a>
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-sk"></span> Slovensko
</a>
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-fi"></span> Suomi
</a>
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-se"></span> Sverige
</a>
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-tr"></span> Turkiye
</a>
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-us"></span> USA
</a>
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-gb"></span> United Kingdom
</a>
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-cz"></span> Ceska Republika
</a>
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-gr"></span> Greece
</a>
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-ru"></span> Russian Federation
</a>
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-tw"></span> Taiwan
</a>
<a class="dropdown-item" href="#">
<span class="flag-icon flag-icon-jp"></span> Japan
</a>
</div>
</span>
<!-- Server select -->
<span class="dropdown">
<button type="button" class="btn btn-custom btn-lg dropdown-toggle font-weight-light" data-toggle="dropdown" title="Select your server">
Quantum
</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">Quantum</a>
<a class="dropdown-item" href="#">Antares</a>
<a class="dropdown-item" href="#">Betelgeuse</a>
<a class="dropdown-item" href="#">Cygnus</a>
<a class="dropdown-item" href="#">Deimos</a>
<a class="dropdown-item" href="#">Eridanus</a>
<a class="dropdown-item" href="#">Fidis</a>
<a class="dropdown-item" href="#">Ganimed</a>
<a class="dropdown-item" href="#">Hyperion</a>
<a class="dropdown-item" href="#">Izar</a>
<a class="dropdown-item" href="#">Japetus</a>
<a class="dropdown-item" href="#">Kallisto</a>
<a class="dropdown-item" href="#">Libra</a>
<a class="dropdown-item" href="#">Merkur</a>
<a class="dropdown-item" href="#">Nusakan</a>
<a class="dropdown-item" href="#">Oberon</a>
<a class="dropdown-item" href="#">Polaris</a>
<a class="dropdown-item" href="#">Quaoar</a>
<a class="dropdown-item" href="#">Rhea</a>
<a class="dropdown-item" href="#">Spica</a>
<a class="dropdown-item" href="#">Tarazed</a>
<a class="dropdown-item" href="#">Uriel</a>
<a class="dropdown-item" href="#">Virgo</a>
<a class="dropdown-item" href="#">Wezn</a>
<a class="dropdown-item" href="#">Xanthus</a>
<a class="dropdown-item" href="#">Yildun</a>
<a class="dropdown-item" href="#">Draco</a>
<a class="dropdown-item" href="#">Nekkar</a>
<a class="dropdown-item" href="#">Quantum</a>
<a class="dropdown-item" href="#">Taurus</a>
<a class="dropdown-item" href="#">Wasat</a>
<a class="dropdown-item" href="#">Yakini</a>
<a class="dropdown-item" href="#">Zagadra</a>
<a class="dropdown-item" href="#">68. Universum</a>
</div>
</span>
<!-- Help tooltip -->
<button type="button" class="btn btn-sm btn-secondary" data-toggle="tooltip" data-placement="top" title="Select country and server, then type player names in the search bar." disabled>?</button>
</div>
<!-- Search bar -->
<div class="col-4 text-center align-self-center">
<form>
<input class="form-control form-control-lg border-0" type="search">
</form>
</div>
</div>
</div>
<!-- Communities -->
<div id="communities" class="container-fluid">
<div class="container">
<div class="row mb-5">
<div class="col text-center">
<h3 class="font-weight-light">
Communities<br>
<small class="text-muted font-weight-light">Select community to browse its statistics</small>
</h2>
</div>
</div>
<div class="row">
<div class="col-2 text-center px-4">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-pl"></div>
<h4 class="h6">Poland</h5>
</a>
</div>
</div>
<div class="col-2 text-center px-4">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-ar"></div>
<h4 class="h6">Argentina</h5>
</a>
</div>
</div>
<div class="col-2 text-center px-4">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-br"></div>
<h4 class="h6">Brasil</h5>
</a>
</div>
</div>
<div class="col-2 text-center px-4">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-dk"></div>
<h4 class="h6">Denmark</h5>
</a>
</div>
</div>
<div class="col-2 text-center px-4">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-de"></div>
<h4 class="h6">Deutshland</h5>
</a>
</div>
</div>
<div class="col-2 text-center px-4">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-es"></div>
<h4 class="h6">Espana</h5>
</a>
</div>
</div>
<div class="col-2 text-center px-4 ">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-fr"></div>
<h4 class="h6">France</h5>
</a>
</div>
</div>
<div class="col-2 text-center px-4">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-hr"></div>
<h4 class="h6">Hrvatska</h5>
</a>
</div>
</div>
<div class="col-2 text-center px-4">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-it"></div>
<h4 class="h6">Italia</h5>
</a>
</div>
</div>
<div class="col-2 text-center px-4">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-hu"></div>
<h4 class="h6">Magyarország</h5>
</a>
</div>
</div>
<div class="col-2 text-center px-4">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-mx"></div>
<h4 class="h6">Mexico</h5>
</a>
</div>
</div>
<div class="col-2 text-center px-4">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-nl"></div>
<h4 class="h6">Nederland</h5>
</a>
</div>
</div>
<div class="col-2 text-center px-4 ">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-no"></div>
<h4 class="h6">Norge</h5>
</a>
</div>
</div>
<div class="col-2 text-center px-4">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-pt"></div>
<h4 class="h6">Portugal</h5>
</a>
</div>
</div>
<div class="col-2 text-center px-4">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-ro"></div>
<h4 class="h6">Romania</h5>
</a>
</div>
</div>
<div class="col-2 text-center px-4">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-si"></div>
<h4 class="h6">Slovenija</h5>
</a>
</div>
</div>
<div class="col-2 text-center px-4">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-sk"></div>
<h4 class="h6">Slovensko</h5>
</a>
</div>
</div>
<div class="col-2 text-center px-4">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-fi"></div>
<h4 class="h6">Suomi</h5>
</a>
</div>
</div>
<div class="col-2 text-center px-4 ">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-se"></div>
<h4 class="h6">Sverige</h5>
</a>
</div>
</div>
<div class="col-2 text-center px-4">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-tr"></div>
<h4 class="h6">Turkiye</h5>
</a>
</div>
</div>
<div class="col-2 text-center px-4">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-us"></div>
<h4 class="h6">USA</h5>
</a>
</div>
</div>
<div class="col-2 text-center px-4">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-gb"></div>
<h4 class="h6">United Kingdom</h5>
</a>
</div>
</div>
<div class="col-2 text-center px-4">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-cz"></div>
<h4 class="h6">Ceska Republika</h5>
</a>
</div>
</div>
<div class="col-2 text-center px-4">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-gr"></div>
<h4 class="h6">Greece</h5>
</a>
</div>
</div>
<div class="col-2 text-center px-4">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-ru"></div>
<h4 class="h6">Russian Federation</h5>
</a>
</div>
</div>
<div class="col-2 text-center px-4">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-tw"></div>
<h4 class="h6">Taiwan</h5>
</a>
</div>
</div>
<div class="col-2 text-center px-4">
<div class="community">
<a class="font-weight-light" href="#">
<div class="flag flag-icon flag-icon-jp"></div>
<h4 class="h6">Japan</h5>
</a>
</div>
</div>
</div>
</div>
</div>
<div id="population" class="container mt-5 mb-5">
<div class="row mb-5">
<div class="col text-center">
<h3 class="font-weight-light">
Population<br>
<small class="text-muted font-weight-light">Overall population across all communities</small>
</h2>
</div>
</div>
<div class="row text-center justify-content-center mb-5">
<div class="col">
<canvas id="population-chart" height="80px"></canvas>
</div>
</div>
<div class="row text-center justify-content-center">
<div class="col-9">
<p class="h5 font-weight-light chart-info">
Currently there are
<span class="font-weight-normal active-players">24 917</span> active,
<span class="font-weight-normal inactive-players">36 012</span> inactive and
<span class="font-weight-normal banned-players">7 063</span>
banned players across all communities.
</p>
<div class="progress mt-4">
<div title="24 917 active" class="progress-bar active-players-bg" style="width: 35%"></div>
<div title="36 012 inactive" class="progress-bar inactive-players-bg" style="width: 55%"></div>
<div title="7 063 banned" class="progress-bar banned-players-bg" style="width: 10%"></div>
</div>
</div>
</div>
</div>
<footer id="footer" class="container text-center">
<div class="row justify-content-center">
<div class="col-4">
<nav class="nav font-weight-normal justify-content-center border-bottom">
<a class="nav-link text-secondary" href="#">About</a>
<a class="nav-link text-secondary" href="#">Contact</a>
<a class="nav-link text-secondary" href="#">Status</a>
<a class="nav-link text-secondary" href="#">Help</a>
</nav>
</div>
</div>
<div class="row mt-2">
<div class="col-12">
<p class="mb-0 text-secondary">Copyright © 2017 Paweł Smolak</p>
<p class="text-secondary">
Code available at
<a class="text-secondary" href="#">github.com</a>
</p>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.bundle.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>