-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (52 loc) · 1.41 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="images/svg+xml" href="/luckColor.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>luckyColor-admin</title>
</head>
<style>
.loading-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 20px;
}
.dark .loading-container {
background-color: #232324;
color: rgba(255, 255, 255, 0.9);
}
.loader {
width: calc(160px / 0.707);
height: 28px;
background: repeating-linear-gradient(-45deg, #766DF4 0 30px,#0000 0 40px) left/200% 100%;
animation: i3 2s infinite linear;
border-radius: 10px;
border: 1px solid #766DF4;
}
@keyframes i3 {
100% {
background-position: right
}
}
</style>
<body class="dark:text-#e9e9e9 auto-bg">
<noscript>
<strong>LuckyColor-admin needs JavaScript to run. Please enable it to continue.</strong>
</noscript>
<div id="app">
<div class="loading-container">
<h2>LuckyColor-admin</h2>
<div class="loader"></div>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>