33 lines
493 B
SCSS
33 lines
493 B
SCSS
#fullscreen {
|
|
display: none;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 99vw;
|
|
height: 100vh;
|
|
|
|
#fullscreen-img {
|
|
max-width: 100%;
|
|
max-height: 100vh;
|
|
object-fit: cover;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.gallery {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
.photo {
|
|
margin: 1vh 1vw;
|
|
width: 25%;
|
|
height: 25%;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
filter: brightness(1.3);
|
|
}
|
|
}
|
|
} |