← back to Dw War Room

index.html

31 lines

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>DW War Room</title>
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
  <style>
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html, body {
      width: 100%; height: 100%; overflow: hidden;
      font-family: 'Inter', -apple-system, system-ui, sans-serif;
      background: #050510;
      color: #e8eaf0;
    }
    #war-room {
      width: 100vw; height: 100vh;
      position: relative;
    }
    canvas { display: block; }
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: transparent; }
    ::-webkit-scrollbar-thumb { background: #252540; border-radius: 2px; }
  </style>
</head>
<body>
  <div id="war-room"></div>
  <script type="module" src="/src/main.ts"></script>
</body>
</html>