-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontroller.html
More file actions
34 lines (34 loc) · 1.27 KB
/
controller.html
File metadata and controls
34 lines (34 loc) · 1.27 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<title>True Friends Quiz — Controller</title>
</head>
<body>
<div id="root">
<style>
@keyframes spin { to { transform: rotate(360deg); } }
.loading-screen {
display: flex; flex-direction: column; align-items: center; justify-content: center;
height: 100vh; background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: #e2e8f0;
}
.loading-spinner {
width: 36px; height: 36px; border: 3px solid rgba(245,166,35,0.2);
border-top-color: #f5a623; border-radius: 50%; animation: spin 0.8s linear infinite;
}
.loading-text { margin-top: 12px; font-size: 0.95em; opacity: 0.8; }
</style>
<div class="loading-screen">
<div class="loading-spinner"></div>
<div class="loading-text">Loading...</div>
</div>
</div>
<script src="https://www.airconsole.com/api/airconsole-1.10.0.js"></script>
<script type="module" src="/src/controller/main.tsx"></script>
</body>
</html>