From 3df57a45a784e4d2e69f850f5d0588954e49e78f Mon Sep 17 00:00:00 2001 From: Luiz Felipe Silva Date: Thu, 13 Oct 2022 14:06:04 -0300 Subject: [PATCH 1/2] feat(home): criado o header. --- index.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 7b809f6..5dca49a 100644 --- a/index.html +++ b/index.html @@ -11,6 +11,10 @@ - +
+ + M3 Academy + +
\ No newline at end of file -- 2.34.1 From 4820b0c267422d3208cdb790b4c4798e6e758776 Mon Sep 17 00:00:00 2001 From: Luiz Felipe Silva Date: Thu, 13 Oct 2022 14:09:15 -0300 Subject: [PATCH 2/2] =?UTF-8?q?feat(home):=20criado=20estiliza=C3=A7=C3=A3?= =?UTF-8?q?o=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..6961313 100644 --- a/src/assets/css/style.css +++ b/src/assets/css/style.css @@ -0,0 +1,20 @@ +/* GLOBAL */ +* { + box-sizing: border-box; + padding: 0; + margin: 0; +} + +/* HEADER */ + +header { + width: 100%; + height: 101px; + background-color: #000; + display: grid; + place-content: center; +} + +header a { + width: 11%; +} \ No newline at end of file -- 2.34.1