Skip to content

Commit

Permalink
adicionando estruturação inicial da seção "seu próximo jogo favorito"
Browse files Browse the repository at this point in the history
  • Loading branch information
GuhStvo committed Feb 20, 2024
1 parent 8625d98 commit a076d16
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 0 deletions.
17 changes: 17 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,22 @@ <h3>Faça o seu</h3>
</article>
</section>

<section id="next-gamefav">

<h2>Descubra seu próximo jogo favorito</h2>

<div class="container">

<div class="card-wraper">
<img src="assets/imgs/section01/A-Little-to-the-Left.png" alt="">
<span>
<h6>A Little to the Left</h6>
<p>Puzzle e curiosidade</p>
</span>
</div>

</div>
</section>

</body>
</html>
53 changes: 53 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -245,3 +245,56 @@ header #header-portal nav img {
content: url(assets/icons/seta.svg);
margin-left: 14px;
}

/* |||||||||||||||||||||||||||||||| */

#next-gamefav {
margin: 80px 33px 0;
width: 100%;

display: flex;
flex-direction: column;
gap: 55px;
}

#next-gamefav h2 {
text-align: center;
}

#next-gamefav .card-wraper img {
max-width: 266px;
min-height: 400px;
}

#next-gamefav .card-wraper {
position: relative;
}

#next-gamefav .card-wraper span {
display: flex;
flex-direction: column;
gap: 10px;

position: absolute;
bottom: 35px;
left: 23px;
right: 23px;
}

#next-gamefav span>h6 {
color: #FFF;
font-family: "Segoe UI";
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: normal;
}

#next-gamefav span>p {
color: #FFF;
font-family: "Segoe UI";
font-size: 13px;
font-style: normal;
font-weight: 600;
line-height: normal;
}

0 comments on commit a076d16

Please sign in to comment.