-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (36 loc) · 1.52 KB
/
index.html
File metadata and controls
39 lines (36 loc) · 1.52 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Mission Room — Multiplayer Agent Workspace</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<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=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap"
rel="stylesheet"
/>
<style>
html, body { margin: 0; background: #ECEAE4; font-family: "Inter", system-ui, sans-serif; color: #111; }
*, *::before, *::after { box-sizing: border-box; }
.console-dots { display: inline-flex; gap: 3px; }
.console-dots span {
width: 4px; height: 4px; border-radius: 999px; background: #5B5BD6;
animation: dot-bounce 1.2s infinite ease-in-out;
}
.console-dots span:nth-child(2) { animation-delay: 0.15s; }
.console-dots span:nth-child(3) { animation-delay: 0.30s; }
@keyframes dot-bounce {
0%, 60%, 100% { transform: translateY(0); opacity: 0.6; }
30% { transform: translateY(-3px); opacity: 1; }
}
*::-webkit-scrollbar { width: 8px; height: 8px; }
*::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.12); border-radius: 4px; }
*::-webkit-scrollbar-track { background: transparent; }
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>