aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordavidpkj <davidpenkow1@gmail.com>2022-12-13 15:03:08 +0100
committerdavidpkj <davidpenkow1@gmail.com>2022-12-13 15:03:08 +0100
commit13fc62a67d8d1183e4d01dd57ee4ac42466e9ef0 (patch)
tree7511b6a2c482383f7ca043b0c7fa11f13dae1f7b
parentf52b7efa6f796dc337a6b5e26999c5fe27dab35c (diff)
Add: start page
-rw-r--r--public/index.html47
1 files changed, 47 insertions, 0 deletions
diff --git a/public/index.html b/public/index.html
new file mode 100644
index 0000000..0a3adda
--- /dev/null
+++ b/public/index.html
@@ -0,0 +1,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> \ No newline at end of file