-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (95 loc) · 2.26 KB
/
index.html
File metadata and controls
101 lines (95 loc) · 2.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GitGenius - GitHub Stats</title>
<style>
#root {
height: 100vh;
}
.app-loader {
position: fixed;
inset: 0;
width: 100%;
height: 100%;
background-color: rgb(2, 6, 23);
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
}
.app-loader::before {
content: "";
position: absolute;
bottom: 0;
left: -20%;
right: 0;
top: -10%;
height: 500px;
width: 500px;
border-radius: 9999px;
background: radial-gradient(
circle farthest-side,
rgba(255, 0, 182, 0.15),
rgba(255, 255, 255, 0)
);
}
.app-loader::after {
content: "";
position: absolute;
bottom: 0;
right: -20%;
top: -10%;
height: 500px;
width: 500px;
border-radius: 9999px;
background: radial-gradient(
circle farthest-side,
rgba(255, 0, 182, 0.15),
rgba(255, 255, 255, 0)
);
}
.loader {
width: 48px;
height: 48px;
border: 3px solid #fff;
border-radius: 50%;
display: inline-block;
position: relative;
box-sizing: border-box;
animation: rotation 1s linear infinite;
}
.loader::after {
content: "";
box-sizing: border-box;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 40px;
height: 40px;
border-radius: 50%;
border: 3px solid transparent;
border-bottom-color: #ff3d00;
}
@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div id="root">
<div class="app-loader">
<span class="loader"></span>
</div>
</div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>