63 lines
1021 B
CSS
63 lines
1021 B
CSS
.albums {
|
|
display: grid;
|
|
list-style: none;
|
|
grid-gap: 1rem;
|
|
line-height: 0;
|
|
}
|
|
|
|
@media screen and (min-width: 30em) {
|
|
.albums {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
}
|
|
@media screen and (min-width: 60em) {
|
|
.albums {
|
|
grid-template-columns: repeat(3, 1fr);
|
|
}
|
|
.albums[data-even] {
|
|
grid-template-columns: repeat(4, 1fr);
|
|
}
|
|
}
|
|
|
|
|
|
.albums li {
|
|
overflow: hidden;
|
|
background: #000;
|
|
}
|
|
.albums figure {
|
|
position: relative;
|
|
padding-bottom: 125%;
|
|
}
|
|
.albums figcaption {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
color: #fff;
|
|
background: rgba(0,0,0, .5);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-end;
|
|
line-height: 1.5em;
|
|
padding: 1rem;
|
|
font-size: .875rem;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: .125em;
|
|
}
|
|
.albums img {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transition: all .3s;
|
|
}
|
|
.albums img:hover {
|
|
opacity: .2;
|
|
}
|