From 9155de7cc91eccce0acceecead8a814eef460cc4 Mon Sep 17 00:00:00 2001 From: promchat <113404274+promchat@users.noreply.github.com> Date: Wed, 26 Oct 2022 13:27:05 -0400 Subject: [PATCH 01/48] created index html --- site/index.html | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 site/index.html diff --git a/site/index.html b/site/index.html new file mode 100644 index 0000000..e69de29 From 6831f04d3fad07c9030c1c95e68f97d2bf7214ec Mon Sep 17 00:00:00 2001 From: Morgangriff12 <112583600+Morgangriff12@users.noreply.github.com> Date: Wed, 26 Oct 2022 13:33:04 -0400 Subject: [PATCH 02/48] put a doctype in index.html --- site/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/site/index.html b/site/index.html index e69de29..763b073 100644 --- a/site/index.html +++ b/site/index.html @@ -0,0 +1 @@ + \ No newline at end of file From d14234c57ddc9472ec60b526bf317b09dfdc54a3 Mon Sep 17 00:00:00 2001 From: Morgangriff12 <112583600+Morgangriff12@users.noreply.github.com> Date: Thu, 27 Oct 2022 20:11:14 -0400 Subject: [PATCH 03/48] Created html structure, added a map to the page, and moved the map creation function to a new js file. --- site/css/styles.css | 11 +++++++++++ site/index.html | 26 +++++++++++++++++++++++++- site/js/main.js | 1 + site/js/map.js | 18 ++++++++++++++++++ 4 files changed, 55 insertions(+), 1 deletion(-) create mode 100644 site/css/styles.css create mode 100644 site/js/main.js create mode 100644 site/js/map.js diff --git a/site/css/styles.css b/site/css/styles.css new file mode 100644 index 0000000..4b4d7c5 --- /dev/null +++ b/site/css/styles.css @@ -0,0 +1,11 @@ +body { + display: flex; + flex-direction: column; + height: 100vh; + margin: 0; + padding: 0; +} + +.map { + height: 100% +} \ No newline at end of file diff --git a/site/index.html b/site/index.html index 763b073..2c611f1 100644 --- a/site/index.html +++ b/site/index.html @@ -1 +1,25 @@ - \ No newline at end of file + + + +
+ + +