From ab7f9fc517d5c7afb299544de569abd1c5afab73 Mon Sep 17 00:00:00 2001 From: Rhayllon Date: Mon, 10 Oct 2022 12:38:46 -0300 Subject: [PATCH] Feat(Css): Seta configuracoes gerais do Css e fonte da pagina --- assets/styles/main.css | 10 ++++++++++ index.html | 5 ++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/assets/styles/main.css b/assets/styles/main.css index e69de29..d58fc7e 100644 --- a/assets/styles/main.css +++ b/assets/styles/main.css @@ -0,0 +1,10 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body{ + font-family: 'Inter', sans-serif; + color: #000000; +} \ No newline at end of file diff --git a/index.html b/index.html index ac29e02..bfc239a 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,10 @@ - Document + + + + Landing Page