28 lines
566 B
CSS
28 lines
566 B
CSS
.gallery-images {
|
|
display: none;
|
|
}
|
|
|
|
@media only screen and (min-width: 1280px) {
|
|
.gallery-images {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 120px;
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
z-index: 10;
|
|
}
|
|
|
|
.gallery-images picture, .gallery-images img {
|
|
height: inherit;
|
|
margin: 0 1em;
|
|
}
|
|
|
|
.gallery-images picture:hover {
|
|
cursor: pointer;
|
|
}
|
|
}
|