From 5ccb9fb233c7adc5e3a8d84007cf991e11996683 Mon Sep 17 00:00:00 2001 From: Luiz Felipe Silva Date: Fri, 14 Oct 2022 14:00:33 -0300 Subject: [PATCH 1/2] feat(home): adicionado header. --- index.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 5907c51..589588a 100644 --- a/index.html +++ b/index.html @@ -13,6 +13,10 @@ - +
+ + Logo M3 + +
\ No newline at end of file -- 2.34.1 From 60114285afa103fe7490c9e53b5e035fc2f218b9 Mon Sep 17 00:00:00 2001 From: Luiz Felipe Silva Date: Fri, 14 Oct 2022 14:00:44 -0300 Subject: [PATCH 2/2] =?UTF-8?q?feat(home):=20feito=20a=20estiliza=C3=A7?= =?UTF-8?q?=C3=A3o=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; +} -- 2.34.1