GALERIA FOTOS ESTILO GRILLA GRID CSS RESPONSIVE
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Montserrat', sans-serif;
text-decoration: none;
list-style: none;
scroll-behavior: smooth;
}
:root{
--bg-color: #ffffff;
--text-color: #121212;
--main-font: 2.2rem;
--p-font: 1.1rem;
}
body{
background: var(--bg-color);
color: var(--text-color);
}
section{
padding: 100px 8%;
border: 8px solid black;
}
.container{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, auto));
align-items: center;
gap: 2rem;
text-align: center;
cursor: pointer;
padding-top: 2rem;
}
.box{
padding: 0px 20px 10px 20px;
background: transparent;
box-shadow: 5px 30px 56.1276px rgb(55 55 55 / 12%);
border-radius: 10px;
position: relative;
transition: all .35s ease;
}
.box img{
width: 100%;
height: auto;
}
.box h4{
font-size: 15px;
letter-spacing: 1px;
margin-bottom: 8px;
}
.box h5{
font-size: 14px;
letter-spacing: 1px;
margin-bottom: 20px;
}
.box:hover{
transform: translateY(-5px);
}
<section>
<div class="container">
<div class="box">
<img src="img/main1.jpg">
<h4>I'm a product</h4>
<h5>$15.00</h5>
</div>
</div>
</section>
Comentarios
Publicar un comentario