aboutsummaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorAdam Hovorka <[email protected]>2019-07-17 12:35:46 -0600
committerAdam Hovorka <[email protected]>2019-07-17 12:35:46 -0600
commit6bb3e72df331ef45a69fe7f76ed4b7e7babe021a (patch)
tree9d9a4c95a92517f4d165fb82f2195446e8e68e5c /public
Initial commit
Diffstat (limited to 'public')
-rw-r--r--public/404.html1
-rw-r--r--public/500.html1
-rw-r--r--public/index.html16
-rw-r--r--public/main.js7
-rw-r--r--public/style.css21
5 files changed, 46 insertions, 0 deletions
diff --git a/public/404.html b/public/404.html
new file mode 100644
index 0000000..1a43d0a
--- /dev/null
+++ b/public/404.html
@@ -0,0 +1 @@
+<pre>404 Not Found</pre>
diff --git a/public/500.html b/public/500.html
new file mode 100644
index 0000000..ee07335
--- /dev/null
+++ b/public/500.html
@@ -0,0 +1 @@
+<pre>500 Internal Server Error</pre>
diff --git a/public/index.html b/public/index.html
new file mode 100644
index 0000000..c3828a5
--- /dev/null
+++ b/public/index.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <title>nomicvote</title>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width,initial-scale=1">
+
+ <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Rubik:400,500&display=swap">
+ <link rel="stylesheet" href="style.css">
+ </head>
+ <body>
+ <h1>nomicvote</h1>
+
+ <script src="main.js"></script>
+ </body>
+</html>
diff --git a/public/main.js b/public/main.js
new file mode 100644
index 0000000..eae1d63
--- /dev/null
+++ b/public/main.js
@@ -0,0 +1,7 @@
+document.addEventListener("DOMContentLoaded", async () => { "use strict"
+
+const $ = s => document.querySelector(s);
+
+// TODO
+
+});
diff --git a/public/style.css b/public/style.css
new file mode 100644
index 0000000..8db054f
--- /dev/null
+++ b/public/style.css
@@ -0,0 +1,21 @@
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ font-family: "Rubik", sans-serif;
+ transition-timing-function: ease-in-out;
+}
+
+h1 {
+ font-size: 34px;
+ font-weight: normal;
+}
+
+h4 {
+ font-size: 10px;
+ font-weight: 500;
+}
+
+p {
+ font-size: 16px;
+}