From 611f70cf4e8747bd860ee675adfc604b745e0842 Mon Sep 17 00:00:00 2001 From: Nicolly Vieira Date: Tue, 11 Oct 2022 08:36:28 -0300 Subject: [PATCH] feat(index): cria estilo da header para desktop e mobile --- index.html | 2 ++ styles/main.css | 17 +++++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/index.html b/index.html index 18cb091..941ad8b 100644 --- a/index.html +++ b/index.html @@ -5,6 +5,8 @@ Desafio 1 - Landing Page + + diff --git a/styles/main.css b/styles/main.css index e69de29..8a4608c 100644 --- a/styles/main.css +++ b/styles/main.css @@ -0,0 +1,17 @@ +* { + margin: 0; + box-sizing: border-box; +} + +.header-page { + display: flex; + justify-content: center; + + background: #000; +} + +.header-page-logo { + display: block; + + padding: 30px 0; +} \ No newline at end of file -- 2.34.1