79 lines
1.3 KiB
SCSS
79 lines
1.3 KiB
SCSS
|
.gallery {
|
||
|
// display: flex;
|
||
|
// flex-wrap: wrap;
|
||
|
display: grid;
|
||
|
grid-template-columns: repeat(12, 1fr);
|
||
|
grid-column-gap: 1rem;
|
||
|
}
|
||
|
|
||
|
.gallery__side {
|
||
|
grid-column-start: 1;
|
||
|
grid-column-end: 3;
|
||
|
}
|
||
|
|
||
|
.gallery__side {
|
||
|
margin-bottom: .5rem;
|
||
|
}
|
||
|
|
||
|
.gallery-tags__title {
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
.gallery__items-container {
|
||
|
grid-column-start: 3;
|
||
|
grid-column-end: 13;
|
||
|
}
|
||
|
|
||
|
.gallery__items {
|
||
|
display: grid;
|
||
|
grid-template-columns: repeat(4, minmax(13rem, 1fr));
|
||
|
|
||
|
grid-gap: 1rem;
|
||
|
}
|
||
|
|
||
|
.gallery__item {
|
||
|
aspect-ratio: 1;
|
||
|
// $size: 25rem;
|
||
|
// width: $size;
|
||
|
// height: $size;
|
||
|
img {
|
||
|
width: 0;
|
||
|
height: 0;
|
||
|
min-height: 100%;
|
||
|
min-width: 100%;
|
||
|
display: block;
|
||
|
object-fit: cover;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.gallery__nextprev {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
|
||
|
@media (max-width: $lg-breakpoint) {
|
||
|
// .gallery__items {
|
||
|
// grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr))
|
||
|
// }
|
||
|
}
|
||
|
|
||
|
@media (max-width: $md-breakpoint) {
|
||
|
.gallery {
|
||
|
display: block;
|
||
|
}
|
||
|
.gallery__items {
|
||
|
grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
|
||
|
}
|
||
|
.gallery__side {
|
||
|
margin-bottom: 1rem;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media (max-width: $xs-breakpoint) {
|
||
|
.gallery__items {
|
||
|
grid-template-columns: 1fr;
|
||
|
}
|
||
|
}
|
||
|
|