-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (44 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Vue Project Accelerator</title>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
<meta name="description" content="Vue Project Accelerator" />
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0" />
<meta name="theme-color" content="#ffffff" />
<link rel="icon" href="./favicon.ico" />
<base href="/" />
<style>
.loading-spinner:empty {
position: absolute;
top: calc(50% - 6em);
left: calc(50% - 6em);
width: 12em;
height: 12em;
border: 1.1em solid rgba(0, 0, 0, 0.2);
border-left: 1.1em solid #2e7d32;
border-radius: 50%;
animation: loadSpinAnimate 1.1s infinite linear;
}
@keyframes loadSpinAnimate {
0% {
transform: rotate(0);
}
100% {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<noscript>
<strong
>We're sorry but this application doesn't work properly without JavaScript enabled. Please enable it
to continue.</strong
>
</noscript>
<div id="app"><div class="loading-spinner"></div></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>