-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (53 loc) · 1.89 KB
/
Copy pathindex.html
File metadata and controls
54 lines (53 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AetherClock</title>
<script type="importmap">
{
"imports": {
"@babylonjs/core": "https://esm.sh/@babylonjs/core@9.10.1",
"@babylonjs/core/Shaders/particles.vertex": "https://esm.sh/@babylonjs/core@9.10.1/Shaders/particles.vertex",
"@babylonjs/core/Shaders/particles.fragment": "https://esm.sh/@babylonjs/core@9.10.1/Shaders/particles.fragment"
}
}
</script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Share+Tech+Mono&display=swap" rel="stylesheet">
<style>
body {
background-color: var(--body-bg, #121212);
color: var(--body-text, #e5e5e5);
background-image: var(--body-bg-gradient, radial-gradient(circle at 50% 50%, #1a1a1a 0%, #000 100%));
transition: background-color 0.5s ease, color 0.5s ease;
}
/* Hide default time picker icon */
input[type="time"]::-webkit-calendar-picker-indicator {
display: none;
}
input[type="time"] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.led-text-shadow {
text-shadow: var(--led-shadow, 0 0 10px rgba(255, 51, 51, 0.7));
}
</style>
<link rel="manifest" href="/manifest.json">
<link rel="stylesheet" href="/index.css">
</head>
<body>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
<script src="https://www.youtube.com/iframe_api"></script>
<script>
window.addEventListener('beforeinstallprompt', (e) => {
e.preventDefault();
window.deferredInstallPrompt = e;
});
</script>
</body>
</html>