forked from hypatia-earth/zero
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (74 loc) · 2.19 KB
/
index.html
File metadata and controls
77 lines (74 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<meta name="theme-color" content="#161616">
<meta name="description" content="Interactive 4D Weather Globe">
<!-- Open Graph (Facebook, LinkedIn, WhatsApp) -->
<meta property="og:title" content="Hypatia Zero">
<meta property="og:description" content="Interactive 4D Weather Globe">
<meta property="og:image" content="https://zero.hypatia.earth/images/hypatia-zero-social.png">
<meta property="og:url" content="https://zero.hypatia.earth">
<meta property="og:type" content="website">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Hypatia Zero">
<meta name="twitter:description" content="Interactive 4D Weather Globe">
<meta name="twitter:image" content="https://zero.hypatia.earth/images/hypatia-zero-social.png">
<title>Hypatia Zero</title>
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
width: 100%;
height: 100%;
overflow: hidden;
background: #161616;
color: #fff;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
font-weight: 400;
user-select: none;
-webkit-tap-highlight-color: transparent;
}
#app {
position: absolute;
inset: 0;
pointer-events: none;
}
#globe {
display: block;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 1s ease-out;
}
#globe.ready {
opacity: 1;
}
#preload {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
color: rgba(255, 255, 255, 0.4);
font-family: 'Inter', system-ui, sans-serif;
font-size: 14px;
}
#preload.hidden {
display: none;
}
</style>
</head>
<body>
<div id="preload">Please wait a second or two...</div>
<canvas id="globe"></canvas>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>