Added initial version.

This commit is contained in:
Lewin Probst 2019-08-02 13:56:37 +02:00
parent 4e81e20470
commit 8cfe4a8693
4 changed files with 178 additions and 0 deletions

9
css/002-big-image.css Normal file
View file

@ -0,0 +1,9 @@
.big-image picture, .big-image img {
height: auto;
min-height: 100%;
min-width: 100%;
position: fixed;
top: 0;
left: 0;
z-index: -1;
}

28
css/003-gallery.css Normal file
View file

@ -0,0 +1,28 @@
.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;
}
}