forked from ProjectSakura/ProjectSakura.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stats.html
452 lines (383 loc) · 14.3 KB
/
stats.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
<!DOCTYPE html>
<!--Copyright By Project Sakura
This page is designed by members of Project Sakura and all the code belongs to them, thanks to W3schools for CSS.
Don't remove this if you intent to use this page for your website.
-->
<html lang="en">
<head>
<title>Sakura Stats</title>
<meta charset="UTF-8">
<meta name="description" content="You can see all the stats related to project sakura here :)">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" sizes="32x32" href="image/logo.png">
<link rel="icon" type="image/png" sizes="96x96" href="image/logo.png">
<link rel="icon" type="image/png" sizes="16x16" href="image/logo.png">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- New UI -->
<link rel="stylesheet" href="./css/bootstrap-ui.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-173637831-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-173637831-1');
</script>
<style>
* {
box-sizing: border-box;
}
/* theme */
body {
--accent-color :#64B1F3;
--background-color: #0F111A;
--btn-toggle-color: #56cc9d;
--container-color: #212433;
--footer-background-color: #212433;
--footer-color: #157a6e;
--footer-social-icon-color: #78c2ad;
--icon-color: #56cc9d;
--table-body-color: #212433;
--table-text-color: #c9d1d9;
--text-color: #f2f2f2;
--transition-delay: 0.5s;
background-color: var(--background-color);
margin: 0;
transition: var(--transition-delay);
}
body.light {
--accent-color :#56cc9d;
--background-color: #f7f7f9;
--btn-toggle-color: #0F111A;
--container-color: #56cc9d;
--footer-background-color: #56cc9d;
--footer-color: #1a3b8f;
--footer-social-icon-color: #0349ff;
--icon-color: #000;
--table-body-color: #f7f7f7;
--table-text-color: #5A5A5A;
--text-color: #5A5A5A;
color: #000;
}
.btn-toggle
{
background-color: var(--btn-toggle-color);
border: 0;
border-radius: 50%;
color: #FFF;
cursor: pointer;
height: 33px;
padding: 3px;
position: absolute;
right:2.5rem;
transition: var(--transition-delay);
top: 2.5rem;
width: 33px;
z-index: 999;
}
.btn-toggle:hover,
.btn-toggle:focus{
transform: scale(1.1);
}
h1,
h2,
h3,
h4,
h5 {
align-items: center;
color: var(--text-color);
font-family: 'Poppins', sans-serif;
margin: auto;
}
h1 {
color: var(--accent-color);
font-weight: 300;
}
.header-card {
background-color: var(--container-color);
color: #f2f2f2;
}
/*
=======================================
============= ADDED CSS ===============
=======================================
*/
.text-center{
text-align: center;
}
/* Table Styling */
.table
{
background-color: var(--table-body-color);
border: 1px solid var(--accent-color);
color: var(--table-text-color);
}
.table-heading {
font-weight: 700;
margin-bottom: 1em;
}
.table-success th
{
border-color: var(--accent-color);
}
.table-success,.thread
{
background-color: var(--accent-color);
}
th, td{
border: 1px solid var(--accent-color);
}
/* Footer Styling */
/* footer {
margin: 0;
padding: 2em 0;
background-color: var(--container-color)
}
.footer-text h3,
.footer-text p {
color: #FFF;
margin: 1em;
}
.icon-list {
margin: 0px;
padding: 0px;
display: flex;
justify-content: center;
list-style: none;
}
.icon-list li {
width: 50px;
height: 50px;
text-align: center;
margin: 0 2em;
}
.icon-list li a {
font-size: 50px;
line-height: 50px;
text-decoration: none;
color: var(--icon-color) !important;
}
.icon-list li a:hover {
cursor: pointer;
color: #FFF ;
filter: invert(100);
} */
/*---------------------------------------
Color Animation
-----------------------------------------*/
.color_animation {
animation: animate 6s linear infinite;
}
@keyframes animate {
0% {
filter: hue-rotate(0deg);
}
100% {
filter: hue-rotate(360deg);
}
}
/*---------------------------------------
Footer
-----------------------------------------*/
footer {
background-color: var(--footer-background-color);
margin: 80px 0 0 0;
padding: 40px 0 0 0;
}
footer .footer-copyright a {
color: var(--footer-color);
font-weight: 700;
list-style: none;
text-decoration: none;
}
footer .footer-copyright a:hover {
animation: animate 6s linear infinite;
}
footer .footer-copyright p {
/* color: rgba(0, 0, 0, .8); */
font-size: 20px;
text-align: center;
}
/*---------------------------------------
Social icon
-----------------------------------------*/
.social-icon {
margin: 0;
padding: 0;
position: relative;
text-align: center
}
.social-icon li {
display: inline-block;
list-style: none
}
.social-icon li a {
border: 2px solid transparent;
border-radius: 100px;
color: var(--footer-social-icon-color);
cursor: pointer;
font-size: 40px;
height: 60px;
line-height: 60px;
margin: 22px 4px 10px 4px;
position: relative;
text-align: center;
text-decoration: none;
transition: all .4s ease-in-out;
vertical-align: middle;
width: 60px;
}
.social-icon li a:hover {
animation: animate 6s linear infinite;
background: #4aa48a;
color: rgba(0, 0, 0, .9);
transform: scale(1.1);
}
</style>
</head>
<body>
<!-- Header -->
<div class="container btn-container">
<button class="btn-toggle"><i class="fa fa-adjust" style="font-size: 21px;"></i></button>
</div>
<header class="container text-center">
<h1>SAKURA STATS ©</h1>
</header>
<!-- Intro Card -->
<div class="container card header-card mb-3" >
<h3 class="card-title">Project Sakura got downloaded <span class="totaldownload"></span> times.</h3>
<p class="card-text">Note: These stats are only for official downloads, unofficial numbers are unknown.</p>
</div>
<!-- TABLE ENTRIES >> Supported Devices -->
<div class="container">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- horizontal-sakura-unit3 -->
<ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-1277633863266032" data-ad-slot="5690616310" data-ad-format="auto" data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<h3 class="text-center table-heading">SUPPORTED DEVICES</h3>
<table class="table table-striped" style=" font-weight: 600;">
<thead class="table-success">
<tr>
<th>DEVICES</th>
<th>DOWNLOADS</th>
<th>Percentage</th>
</tr>
</thead>
<tbody class="table_device_2">
</tbody>
</table>
</div>
<!-- TABLE ENTRIES >> Unsupported Devices -->
<div class="container">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- horizontal-sakura-unit3 -->
<ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-1277633863266032" data-ad-slot="5690616310" data-ad-format="auto" data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<h3 class="text-center table-heading">UNSUPPORTED DEVICES</h3>
<table class="table table-striped" style="font-weight: 600">
<thead class="table-success">
<tr>
<th>DEVICES</th>
<th>DOWNLOADS</th>
<th>Percentage</th>
</tr>
</thead>
<tbody class="table_device">
</tbody>
</table>
</div>
<!-- TABLE ENTRIES >> Countries -->
<div class="container">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- sakura-horizontal-unit-2 -->
<ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-1277633863266032" data-ad-slot="8931146882" data-ad-format="auto" data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<!-- Blog entry -->
<h3 class="text-center table-heading">TOP COUNTRIES</h3>
<table class="table table-striped">
<thead class="table-success">
<tr>
<th>SERIAL NUMBER</th>
<th>COUNTRY NAME</th>
<th>DOWNLOADS</th>
</tr>
</thead>
<tbody class="countries">
</tbody>
</table>
</div>
<!-- TABLE ENTRIES >> Operating Systems -->
<div class="container">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- sakura-horizontal-display-ad -->
<ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-1277633863266032" data-ad-slot="8448641591" data-ad-format="auto" data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<h3 class="text-center table-heading">OS USED TO DOWNLOAD SAKURA</h3>
<table class="table table-striped">
<thead class="table-success">
<tr>
<th>SERIAL NUMBER</th>
<th>COUNTRY NAME</th>
<th>DOWNLOADS</th>
</tr>
</thead>
<tbody class="oses">
</tbody>
</table>
</div>
<!-- FOOTER -->
<!-- <footer>
<div class="container">
<ul class="icon-list">
<li><a class="fa fa-twitter" href="https://twitter.com/ProjectSakura_" target="_blank"></a></li>
<li><a class="fa fa-github" href="https://www.github.com/ProjectSakura" target="_blank"></a></li>
</ul>
</div>
<div class="footer-text text-center">
<h3>Designed by Sakura Team</h3>
<p>Supported by XSLTEL OU</p>
<p>Stats are fetched from Sourceforge.</p>
</div>
</footer> -->
<!-- Footer Section -->
<footer id="footer-stickey">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12">
<div class="footer-copyright">
<p>Sponser: <a href="#">XSLTEL OU</a>
| Design: <a href="#home" target="_parent">SAKURA TEAM</a>
</p>
<p>Stats are fetched from Sourceforge.</p>
</div>
<ul class="social-icon" data-wow-delay="1s">
<li><a href="https://twitter.com/ProjectSakura_" target="_blank" class="fa fa-twitter"></a></li>
<li><a href=href="https://www.github.com/ProjectSakura" target="_blank" class="fa fa-github"></a></li>
</ul>
</div>
</div>
</div>
</footer>
<script src="mantainers.js"></script>
<script src="mantainers2.js"></script>
<script src="js/stat.js"></script>
<!-- TOGGLE THEME -->
<script>
document.querySelector(".btn-toggle").addEventListener('click', ()=>{
document.querySelector("body").classList.toggle("light");
});
</script>
</body>
</html>