-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (66 loc) · 1.66 KB
/
Copy pathindex.html
File metadata and controls
67 lines (66 loc) · 1.66 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.png" />
<link rel="apple-touch-icon" href="/logo-512.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PinkCode</title>
<!-- Paint immediately so cold start is not a pure black window -->
<style>
html,
body {
margin: 0;
height: 100%;
background: #0b0d12;
color: #8b93a7;
font-family: "Segoe UI", system-ui, sans-serif;
}
#root {
height: 100%;
}
#boot-splash {
position: fixed;
inset: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 10px;
background: #0b0d12;
z-index: 9999;
pointer-events: none;
transition: opacity 0.2s ease;
}
#boot-splash.done {
opacity: 0;
}
#boot-splash .mark {
width: 28px;
height: 28px;
border: 2px solid #2e3545;
border-top-color: #6ea8ff;
border-radius: 50%;
animation: boot-spin 0.7s linear infinite;
}
#boot-splash .label {
font-size: 12px;
letter-spacing: 0.06em;
text-transform: uppercase;
}
@keyframes boot-spin {
to {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div id="boot-splash" aria-hidden="true">
<div class="mark"></div>
<div class="label">PinkCode</div>
</div>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>