You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
978 B
57 lines
978 B
.instagram {
|
|
margin: 0;
|
|
display: grid;
|
|
grid-template-columns: repeat(5, 1fr);
|
|
grid-auto-rows: 1fr;
|
|
grid-column-gap: 0.1rem;
|
|
grid-row-gap: 0.1rem;
|
|
}
|
|
|
|
.instagram li {
|
|
margin: 0;
|
|
display: inline-block;
|
|
}
|
|
|
|
.instagram li a {
|
|
display: block;
|
|
position: relative;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.instagram li a img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transform: scale(1);
|
|
transition: all 1s;
|
|
}
|
|
|
|
.instagram li:hover a img {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.instagram li a span {
|
|
display: block;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
padding: 0.5rem;
|
|
font-size: 80%;
|
|
font-weight: 600;
|
|
color: #222;
|
|
background: rgba(243, 171, 0, 0.7);
|
|
text-align: center;
|
|
opacity: 0;
|
|
transform: translateY(-20px);
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.instagram li:hover a span {
|
|
transform: translateY(0px);
|
|
opacity: 1;
|
|
}
|