23 lines
353 B
CSS
23 lines
353 B
CSS
.gallery {
|
|
width: 100%;
|
|
}
|
|
|
|
.gallery .gallery-images {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
gap: 1rem;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.gallery .gallery-images img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.gallery h2.gallery-date {
|
|
position: relative;
|
|
top: 0;
|
|
left: 0;
|
|
} |