diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..886aed3 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "editor.autoClosingBrackets": "languageDefined" +} \ No newline at end of file diff --git a/assets/images/m3-logo.png b/assets/images/m3-logo.png new file mode 100644 index 0000000..b109af0 Binary files /dev/null and b/assets/images/m3-logo.png differ diff --git a/assets/styles/main.css b/assets/styles/main.css new file mode 100644 index 0000000..a2502bf --- /dev/null +++ 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; +} + +.header-logo { + display: block; +} + diff --git a/index.html b/index.html new file mode 100644 index 0000000..7aa8d48 --- /dev/null +++ b/index.html @@ -0,0 +1,22 @@ + + + + + + + + + M3 Landing Page + + + + + + + + \ No newline at end of file