forked from M3-Academy/challenge-landing-page
Desafio finalizado #11
BIN
assets/images/top-image.png
Normal file
BIN
assets/images/top-image.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.6 KiB |
@ -27,6 +27,52 @@ body {
|
||||
|
||||
|
||||
|
||||
.top__text {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
padding: 84px 30px;
|
||||
gap: 72px;
|
||||
}
|
||||
|
||||
.top__infocard-text {
|
||||
width: 40%;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.top__infocard-subtitle {
|
||||
text-transform: uppercase;
|
||||
font-weight: 400;
|
||||
font-size: 32px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.top__infocard-title,
|
||||
.top__infocard-subtitle {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.top__infocard-title {
|
||||
margin-bottom: 24px;
|
||||
text-transform: uppercase;
|
||||
font-weight: 500;
|
||||
font-size: 48px;
|
||||
}
|
||||
|
||||
.top__infocard-description {
|
||||
line-height: 24px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* MEDIAS QUERIES */
|
||||
|
||||
|
||||
@media screen and (max-width: 414px) {
|
||||
.main__banner-desktop,
|
||||
.middle__banner-desktop {
|
||||
@ -39,4 +85,37 @@ body {
|
||||
.middle__banner-mobile {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@media screen and (max-width: 992px) {
|
||||
.top__text {
|
||||
flex-direction: column;
|
||||
padding: 73px 30px 158px;
|
||||
gap: 65px;
|
||||
}
|
||||
|
||||
.top__infocard-text {
|
||||
width: 100%;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.top__infocard-subtitle {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.top__infocard-title {
|
||||
margin-bottom: 20px;
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
.top__infocard-image {
|
||||
width: 100%;
|
||||
max-width: 240px;
|
||||
}
|
||||
|
||||
.top__infocard-description {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
12
index.html
12
index.html
@ -20,6 +20,18 @@
|
||||
<img class="main__banner main__banner-desktop" src="./assets/images/main-banner-desktop.png" alt="Banner principal Desktop">
|
||||
<img class="main__banner main__banner-mobile" src="./assets/images/main-banner-mobile.png" alt="Banner principal Mobile">
|
||||
</figure>
|
||||
|
||||
<section class="top__text">
|
||||
<div class="top__infocard-text">
|
||||
<h2 class="top__infocard-subtitle">Lorem ipsum</h2>
|
||||
<h1 class="top__infocard-title">dolor sit amet</h1>
|
||||
<p class="top__infocard-description">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum. Curabitur ut tortor sed lacus egestas vulputate vel sit amet velit. Nulla suscipit magna dui. </p>
|
||||
</div>
|
||||
|
||||
<figure>
|
||||
<img class="top__infocard-image" src="./assets/images/top-image.png" alt="Imagem de 3 monitores">
|
||||
</figure>
|
||||
</section>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user