-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (77 loc) · 1.98 KB
/
Copy pathindex.html
File metadata and controls
84 lines (77 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/src/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="view-transition" content="same-origin" />
<title>WinPicker</title>
<style>
:root {
--color-background: #000000;
--color-foreground: #ffffff;
}
html,
body {
height: 100%;
width: 100%;
padding: 0;
margin: 0;
background: var(--color-background, #000000);
font-family: "Segoe UI", "Segoe UI Web (West European)", "Segoe UI",
-apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
font-weight: 400;
color: var(--color-foreground, #ffffff);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.loading {
display: grid;
place-items: center;
inset: 0;
margin: 0 auto;
position: fixed;
}
.loading__letters {
display: flex;
font-style: normal;
font-weight: bold;
font-size: 68px;
line-height: 92px;
color: var(--color-foreground);
animation-name: pulse;
animation-duration: 3000ms;
animation-timing-function: ease-in-out;
animation-delay: 300ms;
animation-iteration-count: infinite;;
}
* {
box-sizing: border-box;
}
@keyframes pulse {
0% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.1);
opacity: 0.5
}
100% {
transform: scale(1);
opacity: 1;
}
}
</style>
</head>
<body>
<div id="root">
<div class="loading">
<span class="loading__letters">
Aa
</span>
</div>
</div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>