-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
72 lines (67 loc) · 1.63 KB
/
index.html
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/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OpenPod</title>
<style>
.shimmer {
background: linear-gradient(
90deg,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 0.2) 50%,
rgba(255, 255, 255, 0) 100%
);
background-size: 200% 100%;
animation: shimmer 1.5s infinite;
}
.loading-container {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #020817;
color: #fff;
}
.loading-card {
background-color: #1e293b;
border-radius: 8px;
padding: 2rem;
width: 300px;
text-align: center;
}
.loading-title {
height: 24px;
width: 150px;
margin: 0 auto 1rem;
border-radius: 4px;
}
.loading-text {
height: 16px;
width: 200px;
margin: 0 auto;
border-radius: 4px;
}
@keyframes shimmer {
0% {
background-position: 200% 0;
}
100% {
background-position: -200% 0;
}
}
</style>
</head>
<body>
<div id="root">
<div class="loading-container">
<div class="loading-card">
<div class="loading-title shimmer"></div>
<div class="loading-text shimmer"></div>
</div>
</div>
</div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>