awebsite/static/css/gallery.css

49 lines
731 B
CSS
Raw Normal View History

2025-05-14 15:08:38 +02:00
#image-gallery {
margin: 2rem 0;
}
2025-05-05 13:15:39 +02:00
.gallery {
2025-05-14 15:08:38 +02:00
column-count: 3;
column-gap: 1rem;
2025-05-05 13:15:39 +02:00
}
2025-05-14 15:08:38 +02:00
.gallery-item {
break-inside: avoid;
margin-bottom: 1rem;
text-align: center;
list-style: none; /* ← important! */
2025-05-05 13:15:39 +02:00
}
2025-05-14 15:08:38 +02:00
.gallery-item img {
2025-05-05 13:15:39 +02:00
width: 100%;
height: auto;
2025-05-14 15:08:38 +02:00
border-radius: 12px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
transition: transform 0.2s ease;
}
.gallery-item img:hover {
transform: scale(1.6);
2025-05-05 13:15:39 +02:00
}
.caption {
font-size: 0.9rem;
2025-05-14 15:08:38 +02:00
margin-top: 0.5rem;
margin-bottom: 0; /* ← just in case */
color: var(--fg-color);
list-style: none; /* ← extra-safe */
}
@media (max-width: 768px) {
.gallery {
column-count: 2;
}
}
@media (max-width: 480px) {
.gallery {
column-count: 1;
}
2025-05-05 13:15:39 +02:00
}