-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (60 loc) · 1.56 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<link rel="icon" type="image/png" href="/satellite_1f6f0-fe0f.png"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Satellite Tracker 🛰️</title>
<style>
html, body {
background: #000;
height: 100%;
margin: 0;
overflow: hidden;
padding: 0;
position: relative;
width: 100%;
}
img {
height: auto;
max-width: 100%;
}
@keyframes rotating {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.rotating {
animation: rotating 2s linear infinite;
}
.center {
display: block;
left: 50%;
position: absolute;
top: 50%;
transform: translate(-50%, -50%);
}
.cesium-infoBox.cesium-infoBox {
box-sizing: border-box;
height: calc(100% - 100px);
max-width: 150px;
padding-bottom: 42px;
}
.cesium-infoBox iframe {
height: 100% !important;
max-height: 100% !important;
}
</style>
</head>
<body>
<div class="center">
<img class="rotating" src="/satellite_1f6f0-fe0f.png" width="512" height="512"/>
</div>
<div id="credit"></div>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>