From 9b9c9757276b1c1c18560384d7799883ae1b8c5d Mon Sep 17 00:00:00 2001 From: zepp Date: Wed, 11 Dec 2024 22:11:51 -0500 Subject: [PATCH] initial layout and styling added to style.css --- style/style.css | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/style/style.css b/style/style.css index e69de29..cdd770e 100644 --- a/style/style.css +++ b/style/style.css @@ -0,0 +1,26 @@ +:root { +} + +*, ::before, ::after { + margin: 0; + padding: 0; +} + +html { + font-size: 16px; +} + +body { + height: 100vh; + width: auto; + box-sizing: border-box; +} + +main { + display: grid; + grid-template-columns: 1fr 2fr; +} + +section { + grid-column: 2/3; +}