-
-
Notifications
You must be signed in to change notification settings - Fork 233
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (58 loc) · 1.3 KB
/
index.html
File metadata and controls
66 lines (58 loc) · 1.3 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
56
57
58
59
60
61
62
63
64
65
66
<!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>Sigma File Manager</title>
<style>
html,
body {
margin: 0;
padding: 0;
background-color: #242227;
}
#app-splash,
#app-splash * {
box-sizing: border-box;
}
#app-splash {
position: fixed;
inset: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 24px;
background-color: #242227;
z-index: 1000;
opacity: 1;
transition: opacity 200ms ease-out;
pointer-events: none;
}
#app-splash.app-splash--hidden {
opacity: 0;
}
#app-splash__spinner {
width: 40px;
height: 40px;
border: 2px solid rgba(255, 255, 255, 0.12);
border-top-color: rgba(255, 255, 255, 0.65);
border-radius: 50%;
animation: app-splash-spin 800ms linear infinite;
}
@keyframes app-splash-spin {
to {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div id="app-splash">
<div id="app-splash__spinner"></div>
</div>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>