38 lines
620 B
CSS
38 lines
620 B
CSS
.overlay {
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
opacity: 1;
|
|
}
|
|
|
|
@media screen and (orientation: landscape) {
|
|
.overlay {
|
|
position: absolute;
|
|
right: 10%; /* Extending full width */
|
|
top: 50%;
|
|
height: auto;
|
|
width: 50%;
|
|
}
|
|
#galerie {
|
|
height: 100vh;
|
|
}
|
|
.carousel-item {
|
|
max-height: 100vh;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
|
|
|
|
@media screen and (orientation: portrait) {
|
|
.overlay {
|
|
position: sticky;
|
|
bottom: 0;
|
|
width: 100vw;
|
|
height: 100%;
|
|
}
|
|
#galerie {
|
|
height: 100%;
|
|
}
|
|
.navbar {
|
|
display: flex;
|
|
position: relative;
|
|
}
|
|
} |