-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (75 loc) · 2.02 KB
/
Copy pathindex.html
File metadata and controls
91 lines (75 loc) · 2.02 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!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" />
<title>SOMBRA: Overwatch Region selector</title>
</head>
<body>
<div id="root">
<style>
.static-splash {
position: fixed;
inset: 0;
z-index: 9999;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #030712;
color: #f8fafc;
font-family: monospace;
}
.logo-container {
display: flex;
align-items: center;
justify-content: center;
width: 80px;
height: 80px;
border-radius: 4px;
background-color: rgba(139, 92, 246, 0.1);
border: 1px solid rgba(139, 92, 246, 0.2);
box-shadow: 0 0 40px rgba(139, 92, 246, 0.06);
margin-bottom: 24px;
animation: pulse-logo 2s infinite ease-in-out;
}
.logo-img {
width: 48px;
height: 48px;
}
.loading-text {
font-size: 10px;
font-weight: bold;
letter-spacing: 0.2em;
color: #a78bfa;
text-transform: uppercase;
animation: pulse-logo 2s infinite ease-in-out;
}
.loading-subtext {
font-size: 8px;
color: #64748b;
letter-spacing: 0.05em;
margin-top: 4px;
}
@keyframes pulse-logo {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
</style>
<div class="static-splash">
<div class="logo-container">
<img class="logo-img" src="/src/assets/icon.png" alt="Sombra Logo" />
</div>
<div class="loading-text">LOADING PROTOCOL // SOMBRA</div>
<div class="loading-subtext">INITIALIZING CORE SYSTEM...</div>
</div>
</div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>