Adiciona os banners pricipais desktop e mobile
This commit is contained in:
parent
9f6ad40da7
commit
13a1b50734
BIN
assets/images/main-banner-desktop.png
Normal file
BIN
assets/images/main-banner-desktop.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 MiB |
BIN
assets/images/main-banner-mobile.png
Normal file
BIN
assets/images/main-banner-mobile.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 332 KiB |
@ -7,12 +7,28 @@
|
||||
.page-header {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
background: #000000;
|
||||
padding: 28px 0;
|
||||
|
||||
background: #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;
|
||||
}
|
||||
}
|
18
index.html
18
index.html
@ -2,9 +2,9 @@
|
||||
|
||||
<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" />
|
||||
<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 Lading Page</title>
|
||||
|
||||
@ -13,10 +13,14 @@
|
||||
|
||||
<body>
|
||||
<header class="page-header">
|
||||
<a href="/">
|
||||
<img class="header-logo" src="assets/images/m3-logo.svg" alt="Logo M3" />
|
||||
</a>
|
||||
|
||||
<img class="header-logo" src="assets/images/m3-logo.svg" alt="Logo M3">
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<section>
|
||||
<img class="main-banner-desktop" src="./assets/images/main-banner-desktop.png" alt="Banner Principal Desktop">
|
||||
<img class="main-banner-mobile" src="./assets/images/main-banner-mobile.png" alt="Banner Principal Mobile">
|
||||
</section>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user