feat: responsividade adicionada

This commit is contained in:
Ramon Dias Ferreira 2022-10-13 18:05:27 -03:00
parent 9b9dd21141
commit ef0e810107
4 changed files with 76 additions and 4 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 332 KiB

View File

@ -14,6 +14,14 @@ header {
height: 101px;
}
.logo{
width: 12%;
}
.logo img{
width: 100%;
}
.banner-top{
width: 100%;
}
@ -191,4 +199,67 @@ footer{
footer p{
color: #ffffff;
}
@media (max-width: 1024px) {
.logo{
width: 55%;
}
.banner-top{
visibility: hidden;
width: 0px;
}
.banner-top-mob{
width: 100%;
}
.network{
width: 58%;
}
.card-section, .card-section-small{
flex-direction: column;
align-items: center;
}
.card, .card-small{
width: 85%;
height: 332px;
}
.card-img, .img-card-small{
width: 29%;
}
.card p, .card-small p{
width: 82%;
}
.computers-area{
display: grid;
grid-template-columns: repeat(2,1fr);
}
#item1{
grid-area: 1/2/1/2;
}
#item2{
grid-area: 1/1/1/1;
}
#item3{
grid-area: 2/1/2/3;
}
.information-code{
display: grid;
}
}
@media (min-width: 1025px) {
.banner-top-mob{
visibility: hidden;
width: 0px;
position: absolute;
}
}

View File

@ -9,12 +9,13 @@
</head>
<body>
<header>
<a href="https://lp.digitalm3.com.br/m3-academy-universidade-corporativa">
<a class="logo" href="https://lp.digitalm3.com.br/m3-academy-universidade-corporativa">
<img src="./assets/images/logo.png" alt="logo da empresa">
</a>
</header>
<main>
<figure>
<img class="banner-top-mob" src="./assets/images/banner-mob.png" alt="notebook com codigos na tela"/>
<img class="banner-top" src="./assets/images/banner.png" alt="notebook com codigos na tela"/>
</figure>
<section class="information-network">
@ -53,13 +54,13 @@
</div>
</section>
<section class="computers-area">
<figure class="computers-img">
<figure class="computers-img" id="item1">
<img src="./assets/images/computer 1.png" alt="notebook parcialmente fechado"/>
</figure>
<figure class="computers-img">
<figure class="computers-img" id="item2">
<img src="./assets/images/computer 2.png" alt="notebook visto de cima"/>
</figure>
<figure class="computers-img">
<figure class="computers-img" id="item3">
<img src="./assets/images/computer 3.png" alt="notebook de lado"/>
</figure>
</section>