siwa-game.fr/src/themes/siwa/assets/css/components/gallery.css
Steb 82a1bb3a97
All checks were successful
/ build-and-deploy (push) Successful in 27s
responsive
2026-05-08 17:08:24 +02:00

68 lines
1.2 KiB
CSS

.gallery-container {
text-align: center;
}
.gallery-container>.page-container:not(:first-child) {
display: none;
}
.gallery-container>.page-container>img {
width: 20%;
min-width: 200px;
margin: 0.5%;
aspect-ratio: 16/9;
object-fit: cover;
cursor: pointer;
}
@media (max-width: 1000px) {
.gallery-container>.page-container>img {
width: 40%;
}
}
.gallery-container>.page-container>.empty {
width: 20%;
min-width: 200px;
margin: 0.5%;
aspect-ratio: 16/9;
display: inline-block;
background: #222;
}
.gallery-container .pages {
display: flex;
align-items: center;
justify-content: center;
}
.gallery-container .pages>.page {
display: flex;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
margin: 5px;
cursor: pointer;
}
.gallery-viewer {
position: fixed;
display: flex;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
opacity: 0;
transition: all 0.5s ease;
align-items: center;
justify-content: center;
z-index: 10000;
top: 0;
left: 0;
visibility: hidden;
}
.gallery-viewer.opened {
opacity: 1;
visibility: visible;
}