From 6bb3e72df331ef45a69fe7f76ed4b7e7babe021a Mon Sep 17 00:00:00 2001 From: Adam Hovorka Date: Wed, 17 Jul 2019 12:35:46 -0600 Subject: Initial commit --- public/404.html | 1 + public/500.html | 1 + public/index.html | 16 ++++++++++++++++ public/main.js | 7 +++++++ public/style.css | 21 +++++++++++++++++++++ 5 files changed, 46 insertions(+) create mode 100644 public/404.html create mode 100644 public/500.html create mode 100644 public/index.html create mode 100644 public/main.js create mode 100644 public/style.css (limited to 'public') 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 @@ +
404 Not Found
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 @@ +
500 Internal Server Error
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 @@ + + + + nomicvote + + + + + + + +

nomicvote

+ + + + 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; +} -- cgit v1.2.3-70-g09d2