-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·55 lines (51 loc) · 1.75 KB
/
index.html
File metadata and controls
executable file
·55 lines (51 loc) · 1.75 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, maximum-scale=1.0" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<title>HamsterBase Tasks</title>
<style>
#root:empty {
position: fixed;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
background: #f8f9fa;
}
#root:empty::before,
#root:empty::after {
content: '';
position: absolute;
border-radius: 50%;
background: #fff;
background-repeat: no-repeat;
}
#root:empty::before {
width: 40px;
height: 40px;
background-image:
radial-gradient(circle 10px at 20px 20px, #30cccc 100%, transparent 0),
radial-gradient(circle 5px at 20px 0px, #30cccc 100%, transparent 0),
radial-gradient(circle 5px at 0px 20px, #30cccc 100%, transparent 0),
radial-gradient(circle 5px at 40px 20px, #30cccc 100%, transparent 0),
radial-gradient(circle 5px at 20px 40px, #30cccc 100%, transparent 0),
radial-gradient(circle 5px at 34px 6px, #30cccc 100%, transparent 0),
radial-gradient(circle 5px at 34px 34px, #30cccc 100%, transparent 0),
radial-gradient(circle 5px at 6px 34px, #30cccc 100%, transparent 0),
radial-gradient(circle 5px at 6px 6px, #30cccc 100%, transparent 0);
animation: rotate 3s linear infinite;
}
@keyframes rotate {
to {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>