From 16d3c4d9c8c461c804ae656903c1e689259922cc Mon Sep 17 00:00:00 2001 From: Gabriel Ferraz Date: Fri, 7 Oct 2022 15:25:22 -0300 Subject: [PATCH] feat(home) : cria header desktop e mobile --- assets/images/Logo M3 [branco] (4) 1.svg | 9 +++++++++ assets/styles/main.css | 17 +++++++++++++++++ index.html | 21 +++++++++++++++++++++ 3 files changed, 47 insertions(+) create mode 100644 assets/images/Logo M3 [branco] (4) 1.svg create mode 100644 assets/styles/main.css create mode 100644 index.html diff --git a/assets/images/Logo M3 [branco] (4) 1.svg b/assets/images/Logo M3 [branco] (4) 1.svg new file mode 100644 index 0000000..d0656f5 --- /dev/null +++ b/assets/images/Logo M3 [branco] (4) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/assets/styles/main.css b/assets/styles/main.css new file mode 100644 index 0000000..b0f8f79 --- /dev/null +++ b/assets/styles/main.css @@ -0,0 +1,17 @@ +*{ + margin: 0; + padding: 0; + box-sizing: border-box; +} + +.page-header{ + display: flex; + justify-content: center; + padding: 28px 0; + background-color: #000000 + ; +} + +.header-logo{ + display: block; +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..f92f1f1 --- /dev/null +++ b/index.html @@ -0,0 +1,21 @@ + + + + + + + + M3 Landing Page + + + + + + + + \ No newline at end of file