-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
45 lines (44 loc) · 1.08 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
<!DOCTYPE html><html lang="zh"><head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LLN</title>
<meta property="og:image" content="/static/logo_512.png">
<meta name="twitter:image" content="/static/logo_512.png">
</head><body>
<div id="app">
<div class="baseloadingarea">
<div class="baseloading"></div>
</div>
</div>
<script type="module" src="/src/main.js"></script>
</body></html><style>
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.baseloadingarea {
display: flex;
width: 100%;
align-items: center;
height: 50vh;
justify-content: center;
}
.baseloading {
width: 40px;
height: 40px;
border: 4px solid rgb(239, 243, 244);
border-top: 4px solid hsla(160, 100%, 37%, 1);
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
@media (prefers-color-scheme: dark) {
.baseloading {
border: 4px solid rgb(47, 51, 54);
}
}
</style>