More massive workstuff for completion :P

This commit is contained in:
Lett Osprey 2026-04-10 19:36:28 +02:00
parent 7a8acf27a7
commit 3385118b14
20 changed files with 325 additions and 354 deletions

View file

@ -115,6 +115,14 @@ body {
margin: 0 auto;
}
.singles-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(590px, 1fr));
gap: 1rem;
max-width: 1200px;
margin: 0 auto;
}
.participant-box {
border: 2px solid #00ff00;
padding: 1rem;

View file

@ -1,48 +0,0 @@
<html>
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>QUIZTERMINAL v1.0</title>
<script src="/lustre/runtime.mjs" type="module"></script>
<script src="/client.js" type="module"></script>
<script id="model" type="application/json">
[
{
"id": "1234",
"name": "Team A",
"key": "1234"
},
{
"id": "1235",
"name": "Team B",
"key": "1235"
},
{
"id": "1236",
"name": "Team C",
"key": "1236"
},
{
"id": "1237",
"name": "Team D",
"key": "1237"
}
]
</script>
<link href="/static/layout.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="terminal-screen">
<div class="terminal-glow">
<div class="scanlines"></div>
<div class="terminal-header"><pre class="terminal-title">
╔═══════════════════════════════════════╗
║ Q U I Z T E R M I N A L ║
╚═══════════════════════════════════════╝
</pre>
</div>
<div id="app"></div>
</div>
</div>
</body>
</html>