summaryrefslogtreecommitdiff
path: root/2026/games/ellg/index.html
blob: a845dea109a855ba696d0328a2c7cc798e07303d (plain)
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
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
    <title>watch the pot</title>
    <style>
    * {
      margin: 0px;
      padding: 0px;
    }

    html,body {
      width: 100%;
      height: 100%;
    }

    body {
      font-size: 10px;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    #game {
      width: min(100vw, 150vh);
      aspect-ratio: 3 / 2;
      image-rendering: pixelated;
    }
    </style>
  </head>
  <body>
    <canvas id="game" width="240" height="160" />
    <script type="module" src="./game.js"></script>
  </body>
</html>