From 269217bc9ffe8f6d7d248b7147337ff971d98628 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cain=C3=A3=20Milech?= Date: Tue, 11 Oct 2022 09:21:59 -0300 Subject: [PATCH] feat: Adiciona header desktop e mobile --- assets/images/logo-m3.svg | 9 +++++++++ assets/styles/main.css | 17 +++++++++++++++++ index.html | 12 ++++++++---- 3 files changed, 34 insertions(+), 4 deletions(-) create mode 100644 assets/images/logo-m3.svg diff --git a/assets/images/logo-m3.svg b/assets/images/logo-m3.svg new file mode 100644 index 0000000..698965a --- /dev/null +++ b/assets/images/logo-m3.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/assets/styles/main.css b/assets/styles/main.css index e69de29..fcc5194 100644 --- a/assets/styles/main.css +++ b/assets/styles/main.css @@ -0,0 +1,17 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; /*mantem a largura do elemento determinada no widht e nao adiciona o tamanho do padding no calculo, porem ele vai estar la*/ +} + +.page-header { + display: flex; + justify-content: center; + padding: 28px 0; + background: #000; +} + +.logo-header { + display: block; +} + diff --git a/index.html b/index.html index 23147db..5064fd2 100644 --- a/index.html +++ b/index.html @@ -1,15 +1,19 @@ - - - + + + Desafio Landing Page - + \ No newline at end of file