aboutsummaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
Diffstat (limited to 'public')
-rw-r--r--public/index.html21
-rw-r--r--public/style.css9
2 files changed, 30 insertions, 0 deletions
diff --git a/public/index.html b/public/index.html
new file mode 100644
index 0000000..6155f3c
--- /dev/null
+++ b/public/index.html
@@ -0,0 +1,21 @@
+<!doctype HTML>
+
+<html>
+
+ <head>
+ <title>cAtchVoid</title>
+ <meta charset="utf-8">
+ <link rel="stylesheet" type="text/css" href="style.css">
+ <script src="client.js"></script>
+ </head>
+
+ <body>
+ </body>
+
+ <script>
+ Elm.fullscreen(Elm.Main, {
+ initialTime: new Date().getTime()
+ });
+ </script>
+
+</html>
diff --git a/public/style.css b/public/style.css
new file mode 100644
index 0000000..4281b43
--- /dev/null
+++ b/public/style.css
@@ -0,0 +1,9 @@
+body { margin: 0; }
+
+body > div {
+ position: fixed;
+ top: 0;
+ bottom: 0;
+ left: 0;
+ right: 0;
+}