-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (47 loc) · 3.39 KB
/
Copy pathindex.html
File metadata and controls
55 lines (47 loc) · 3.39 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" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- PWA Meta Tags -->
<meta name="theme-color" content="#3b82f6" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="AstroQuiz" />
<meta name="mobile-web-app-capable" content="yes" />
<!-- Manifest -->
<link rel="manifest" href="/manifest.json" />
<!-- Apple Touch Icons -->
<link rel="apple-touch-icon" sizes="152x152" href="/icons/icon-152x152.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/icons/icon-192x192.png" />
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="32x32" href="/icons/icon-512x512.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/icons/icon-48x48.png" />
<title>AstroQuiz - Learn the Universe</title>
<meta name="description" content="Test your astronomy knowledge with interactive quizzes covering constellations, planets, space missions, and more.">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<style>
/* Animated stars background */
.stars {
background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="20" cy="20" r="1" fill="white" opacity="0.8"/><circle cx="80" cy="30" r="0.5" fill="white" opacity="0.6"/><circle cx="150" cy="50" r="1" fill="white" opacity="0.7"/><circle cx="60" cy="80" r="0.5" fill="white" opacity="0.5"/><circle cx="120" cy="90" r="1" fill="white" opacity="0.8"/><circle cx="40" cy="120" r="0.5" fill="white" opacity="0.6"/><circle cx="180" cy="130" r="1" fill="white" opacity="0.7"/><circle cx="90" cy="160" r="0.5" fill="white" opacity="0.5"/><circle cx="160" cy="180" r="1" fill="white" opacity="0.8"/></svg>') repeat;
animation: starsMove 50s linear infinite;
}
.stars2 {
background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="30" cy="40" r="0.5" fill="white" opacity="0.4"/><circle cx="100" cy="60" r="1" fill="white" opacity="0.6"/><circle cx="170" cy="80" r="0.5" fill="white" opacity="0.5"/><circle cx="50" cy="100" r="1" fill="white" opacity="0.7"/><circle cx="130" cy="120" r="0.5" fill="white" opacity="0.4"/><circle cx="70" cy="150" r="1" fill="white" opacity="0.6"/><circle cx="190" cy="170" r="0.5" fill="white" opacity="0.5"/></svg>') repeat;
animation: starsMove 100s linear infinite;
}
.stars3 {
background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="10" cy="10" r="0.5" fill="white" opacity="0.3"/><circle cx="110" cy="40" r="0.5" fill="white" opacity="0.4"/><circle cx="180" cy="70" r="0.5" fill="white" opacity="0.3"/><circle cx="30" cy="110" r="0.5" fill="white" opacity="0.4"/><circle cx="140" cy="140" r="0.5" fill="white" opacity="0.3"/></svg>') repeat;
animation: starsMove 150s linear infinite;
}
@keyframes starsMove {
from { transform: translateY(-200px); }
to { transform: translateY(200px); }
}
</style>
</body>
</html>