Feat(header): Feito um novo header sem a utilização do video

This commit is contained in:
Vinicius Gabriel do Amaral Pereira 2022-10-09 10:56:04 -03:00
parent cafdaa2d17
commit 78a764026b
14 changed files with 14 additions and 23 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 269 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 486 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
assets/images/Icons/mao.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 347 B

BIN
assets/images/imgOculos.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 443 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@ -1,25 +1,19 @@
html, body{
margin: 0;
padding: 0;
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');
*{
margin: 0;
padding: 0;
}
html, body{
box-sizing: border-box;
font-family: 'Inter', sans-serif;
}
.header{
background: black;
display: flex;
justify-content: center;
background: black;
padding: 28px 0;
}
.imagemPrincipal img{
max-width: 100%;
}
@media only screen and (max-width: 414px){
.bannerPrincipalDesktop{
display: none;
}
}
@media only screen and (min-width: 414px){
.bannerPrincipalMobile{
display: none;
}
}
.imgLogoM3{
display: block;
}

View File

@ -8,15 +8,12 @@
<link rel="stylesheet" href="./assets/styles/style.css">
</head>
<body>
<header class="header">
<a href="/">
<img style="display: block;" src="./assets/images/Logo_M3.png" alt="Logo M3">
<img class="imgLogoM3" src="./assets/images/logo_M3.png" alt="logo M3">
</a>
</header>
<div class="imagemPrincipal">
<img class="bannerPrincipalDesktop" src="assets/images/imagePrincipal.png" alt="image de um computador com o fundo de um escritorio">
<img class="bannerPrincipalMobile" src="assets/images/imagePrincipalMob.png" alt="image de um computador com o fundo de um escritorio">
</div>
</body>
</html>