From 8b4df1f02548ff594264a39f17c1768352bd5086 Mon Sep 17 00:00:00 2001 From: KARAN JOSHI <64606159+karanjoshi1206@users.noreply.github.com> Date: Thu, 1 Oct 2020 10:03:06 +0530 Subject: [PATCH] Add CSS reset --- css/site.css | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/css/site.css b/css/site.css index a0d50e0..6b8e4db 100644 --- a/css/site.css +++ b/css/site.css @@ -1,4 +1,11 @@ - html, + *{ + margin:0px; + padding:0px; + box-sizing:border-box; + +} + +html, body { height: 100%; width: 100%; @@ -13,7 +20,7 @@ height: 100%; width: 100%; background-color: #1d539d; - color: white; + color: #fff; padding-top: 6%; box-sizing: border-box; overflow-y: auto;