aboutsummaryrefslogtreecommitdiff
path: root/public/index.html
blob: 0a3adda975fcc1a2214e2fa9bcf3dbf0aac55f36 (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
39
40
41
42
43
44
45
46
47
<!DOCTYPE HTML>

<html lang="de">

<head>
  <title>Kunst</title>
  <meta charset="UTF-8">
  <meta name="author" content="David Penkowoj">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <script src="../dist/index.js" type="module" defer></script>
  <style>
    * {
      margin: 0;
      padding: 0;
      overflow: hidden;
      user-select: none;
    }

    #pause {
      position: absolute;

      top: 0;
      left: 0;
      width: 100vw;
      height: 75vh;
      color: #FFFFFF;
      padding-top: 25vh;
      text-align: center;
      font-family: sans-serif;
      background-color: #00000080;
    }

    h1 {
      padding: 1em;
    }
  </style>
</head>

<body>
  <div id="pause">
    <h1>Pause</h1>
    <p>Klicken schaltet das Pausemenü um</p>
    <p>Nutzen Sie WASD oder die Pfeiltasten um zu laufen</p>
  </div>
</body>

</html>