-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (51 loc) · 1.25 KB
/
index.html
File metadata and controls
55 lines (51 loc) · 1.25 KB
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
<!--
Copyright (C) 2025 Nethesis S.r.l.
SPDX-License-Identifier: GPL-3.0-or-later
-->
<!doctype html>
<html lang="">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Nethesis</title>
<style>
body {
margin: 0;
}
.loader-wrapper {
height: 100vh;
text-align: center;
background-color: oklch(58.8% 0.158 241.966); /* sky-600 */
color: oklch(58.8% 0.158 241.966); /* sky-600 */
}
.loader-wrapper .loader {
width: 88px;
height: 88px;
margin-top: 6rem;
border: 8px solid white;
border-bottom-color: transparent;
border-radius: 50%;
display: inline-block;
box-sizing: border-box;
animation: rotation 500ms linear infinite;
}
@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div id="app">
<div class="loader-wrapper">
<span class="loader"></span>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>