This repository has been archived by the owner on Aug 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
52 lines (52 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link href="/src/Common/Images/favicon.ico" rel="icon" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>New Horizons Config Editor</title>
<script src="/src/Main.tsx" type="module" defer></script>
<%- reactDevTools -%> <%- reduxDevToolsPatch -%>
<style>
body {
margin: 0;
}
main {
width: 100vw;
height: 100vh;
}
div.center-items {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.nh-spinner {
animation: spin 1s linear infinite;
width: 250px;
height: 250px;
}
@keyframes spin {
from {
transform: rotateY(0deg) scale(0.3);
}
to {
transform: rotateY(360deg) scale(0.3);
}
}
</style>
</head>
<body>
<main id="root">
<div class="center-items">
<img
alt="Loading..."
class="nh-spinner"
width="84"
height="84"
src="src/Common/Images/spinner_image.png"
/>
</div>
</main>
</body>
</html>