-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (71 loc) · 1.91 KB
/
Copy pathindex.html
File metadata and controls
72 lines (71 loc) · 1.91 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/favicon-180.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PinkCode</title>
<!--
Cold-start paint before CSS loads. Keep in sync with tokens.css Dawn:
glass base rgba(250,244,237,.48), subtle #797593,
highlightHigh #cecacd, rose #d7827e
-->
<style>
html,
body {
margin: 0;
height: 100%;
background: transparent;
color: #797593;
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: rgba(250, 244, 237, 0.48);
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 #cecacd;
border-top-color: #d7827e;
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>