From 3efc794d755069f57213dca03d4b088f477d8035 Mon Sep 17 00:00:00 2001 From: ThronRycer Date: Fri, 9 Apr 2021 17:18:49 +0200 Subject: [PATCH] Create Boilerplate --- 50Days/boilerplate/index.html | 20 ++++++++++++++++++++ 50Days/{day1.css => boilerplate/script.js} | 0 50Days/boilerplate/style.css | 16 ++++++++++++++++ 50Days/day1.html | 12 ------------ 50Days/day1.js | 1 - 5 files changed, 36 insertions(+), 13 deletions(-) create mode 100644 50Days/boilerplate/index.html rename 50Days/{day1.css => boilerplate/script.js} (100%) create mode 100644 50Days/boilerplate/style.css delete mode 100644 50Days/day1.html delete mode 100644 50Days/day1.js diff --git a/50Days/boilerplate/index.html b/50Days/boilerplate/index.html new file mode 100644 index 0000000..a98f36c --- /dev/null +++ b/50Days/boilerplate/index.html @@ -0,0 +1,20 @@ + + + + + + + + + + My Project + + + +

Project Starter

+ + + + diff --git a/50Days/day1.css b/50Days/boilerplate/script.js similarity index 100% rename from 50Days/day1.css rename to 50Days/boilerplate/script.js diff --git a/50Days/boilerplate/style.css b/50Days/boilerplate/style.css new file mode 100644 index 0000000..b35d72c --- /dev/null +++ b/50Days/boilerplate/style.css @@ -0,0 +1,16 @@ +@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap"); + +* { + box-sizing: border-box; +} + +body { + font-family: "Roboto", sans-serif; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + height: 100vh; + overflow: hidden; + margin: 0; +} diff --git a/50Days/day1.html b/50Days/day1.html deleted file mode 100644 index 583f8a8..0000000 --- a/50Days/day1.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - Document - - - - - diff --git a/50Days/day1.js b/50Days/day1.js deleted file mode 100644 index 74e0f12..0000000 --- a/50Days/day1.js +++ /dev/null @@ -1 +0,0 @@ -! \ No newline at end of file