From 8df96d70fa1283da58b8a1e6141eb56d9f6a46af Mon Sep 17 00:00:00 2001 From: zepp Date: Sun, 27 Oct 2024 19:31:19 -0400 Subject: [PATCH] Initial project set up --- index.html | 14 ++++++++++++++ style/style.css | 16 ++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/index.html b/index.html index e69de29..e729811 100644 --- a/index.html +++ b/index.html @@ -0,0 +1,14 @@ + + + + + + + + Baxter's Desktop + + + + + + \ No newline at end of file diff --git a/style/style.css b/style/style.css index e69de29..df03310 100644 --- a/style/style.css +++ b/style/style.css @@ -0,0 +1,16 @@ +/* I may not want to reset margin and padding with a custom CSS framework + Saving it here in case I do though. +*/ + +/* *, ::before, ::after { + margin: 0; + padding: 0; +} */ + +html { + font-size: 16px; +} + +body { + box-sizing: border-box; +} \ No newline at end of file