From 9a5e85ab0a026b39be21924d4457681379d87c0a Mon Sep 17 00:00:00 2001 From: WellingtonWDS Date: Mon, 10 Oct 2022 13:50:29 -0300 Subject: [PATCH] feat(index): Adiciona header desktop e mobile --- assets/logoM3.svg | 9 +++++++++ css/style.css | 27 +++++++++++++++++++++++++++ index.html | 20 ++++++++++++++++++++ 3 files changed, 56 insertions(+) create mode 100644 assets/logoM3.svg create mode 100644 css/style.css create mode 100644 index.html diff --git a/assets/logoM3.svg b/assets/logoM3.svg new file mode 100644 index 0000000..698965a --- /dev/null +++ b/assets/logoM3.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..65eb0e5 --- /dev/null +++ b/css/style.css @@ -0,0 +1,27 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body{ + font-family: 'Inter', sans-serif; + color: #000000; +} + +.page-header{ + display: flex; + justify-content: center; + align-items: center; + background-color: #000000; + padding: 28px 0; +} + +.header-logo{ + display: block; +} + +.main-banner-desktop{ + display: block; + width: 100%; +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..21c5f04 --- /dev/null +++ b/index.html @@ -0,0 +1,20 @@ + + + + + + + Challenge Landing Page + + + + + + + + + + + \ No newline at end of file