Criar logo e banner principal

This commit is contained in:
Savio Carvalho Moraes 2022-10-08 08:22:50 -03:00
parent 08edfea66b
commit 13002df39a
10 changed files with 69 additions and 0 deletions

View File

@ -0,0 +1,6 @@
{
"ExpandedNodes": [
""
],
"PreviewInSolutionExplorer": false
}

Binary file not shown.

BIN
.vs/slnx.sqlite Normal file

Binary file not shown.

32
assets/css/style.css Normal file
View File

@ -0,0 +1,32 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.page-header {
display: flex;
padding: 28px 0;
justify-content: center;
background-color: #000000;
}
.header-logo {
display: block;
}
.main-banner {
width: 100%;
}
@media screen and (max-width: 414px) {
.main-banner-desktop {
display: none;
}
}
@media screen and (min-width: 415px) {
.main-banner-mobile {
display: none;
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 333 KiB

31
index.html Normal file
View File

@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>M3 Landing Page</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<header class="page-header">
<a href="/">
<img class="header-logo" src="./assets/imagens/Logo M3 [branco] (4) 1.png" alt="Logo M3" />
</a>
</header>
<main>
<section>
<img class="main-banner main-banner-desktop" src="./assets/imagens/main-banner-desktop.png"
alt="Banner Principal-Desktop" />
<img class="main-banner main-banner-mobile" src="./assets/imagens/main-banner-mobile.png"
alt="Banner Principal-Mobile" />
</section>
</main>
</body>
</html>