From 60114285afa103fe7490c9e53b5e035fc2f218b9 Mon Sep 17 00:00:00 2001 From: Luiz Felipe Silva Date: Fri, 14 Oct 2022 14:00:44 -0300 Subject: [PATCH] =?UTF-8?q?feat(home):=20feito=20a=20estiliza=C3=A7=C3=A3o?= =?UTF-8?q?=20do=20header.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/css/style.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/assets/css/style.css b/src/assets/css/style.css index e69de29..762ba47 100644 --- a/src/assets/css/style.css +++ b/src/assets/css/style.css @@ -0,0 +1,20 @@ +@import url('../font/fonte.css'); + +/* GLOBAL */ + +* { + box-sizing: border-box; + padding: 0; + margin: 0; +} + +/* HEADER */ + +header { + width: 100%; + height: 100px; + display: flex; + justify-content: center; + align-items: center; + background-color: #000; +}