44 lines
1.5 KiB
HTML
44 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=1280, initial-scale=1.0" />
|
|
<title>SpaceRace - TV</title>
|
|
<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@500;600;700;800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;700&display=swap" rel="stylesheet" />
|
|
<link rel="stylesheet" href="/src/style.css" />
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
html, body { width: 100%; height: 100%; overflow: hidden; background: #050514; }
|
|
#game-container { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; }
|
|
.qr-overlay {
|
|
position: absolute;
|
|
bottom: 8%;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
color: #a0a0c8;
|
|
font-family: 'JetBrains Mono', monospace;
|
|
font-size: 13px;
|
|
text-align: center;
|
|
padding: 6px 16px;
|
|
background: rgba(10,10,36,0.85);
|
|
border: 1px solid rgba(0,229,255,0.25);
|
|
border-radius: 6px;
|
|
text-decoration: none;
|
|
user-select: all;
|
|
pointer-events: auto;
|
|
z-index: 100;
|
|
display: none;
|
|
}
|
|
.qr-overlay:hover { border-color: #00e5ff; color: #00e5ff; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="game-container">
|
|
<a id="qr-url" class="qr-overlay" href="#" target="_blank"></a>
|
|
</div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|