-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (64 loc) · 1.6 KB
/
index.html
File metadata and controls
64 lines (64 loc) · 1.6 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background: #020617;
}
#boot-loader {
position: fixed;
inset: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
z-index: 9999;
background: #0d1117;
opacity: 1;
transition: opacity 0.45s ease-out, visibility 0.45s ease-out;
}
#boot-loader.boot-hide {
opacity: 0;
visibility: hidden;
pointer-events: none;
}
.boot-logo {
font-size: 64px;
margin-bottom: 24px;
}
.boot-bar-bg {
width: 180px;
height: 4px;
background: #21262d;
border-radius: 2px;
overflow: hidden;
}
.boot-bar {
width: 50%;
height: 100%;
background: #1f6feb;
animation: bootSlide 1.5s infinite ease-in-out;
}
@keyframes bootSlide {
0% { transform: translateX(-100%); }
100% { transform: translateX(200%); }
}
</style>
<title>netsec-toolbox</title>
</head>
<body>
<div id="boot-loader">
<div class="boot-logo">🛡️</div>
<div class="boot-bar-bg"><div class="boot-bar"></div></div>
</div>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>