-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (52 loc) · 1.37 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Naive Admin Pro</title>
</head>
<body>
<div id="app">
<style>
body {
margin: 0 !important;
padding:0 !important;
}
.first-load {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
gap: 20px;
font-size: 14px;
}
.loader-12 {
width: 30px;
padding: 8px;
aspect-ratio: 1;
border-radius: 50%;
background: #ff3369;
--_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
-webkit-mask: var(--_m);
mask: var(--_m);
-webkit-mask-composite: source-out;
mask-composite: subtract;
animation: l3 1s infinite linear
}
@keyframes l3 {
to {
transform: rotate(1turn)
}
}
</style>
<div class="first-load">
<div class="loader-12"></div>
<div>naive-admin-pro</div>
</div>
</div>
<script>window.global = window;</script>
<script type="module" src="/src/main.ts"></script>
</body>
</html>