Files
hugo-snap-gallery/assets/scss/snap-gallery.scss

141 lines
2.2 KiB
SCSS
Raw Normal View History

.snap-wrapper {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
gap: 10px;
2019-10-20 22:27:27 +02:00
}
2020-03-09 13:20:20 +01:00
/* Create equal columns in flexbox */
.snap-image {
// TODO: Make this configurable with variables
width: calc(100% / 4 - 10px);
min-width: 200px;
2019-10-20 22:27:27 +02:00
img {
aspect-ratio: 16/10;
width: 100%;
object-fit: cover;
}
2020-03-09 13:20:20 +01:00
}
2024-01-30 12:18:28 +01:00
/* The Modal (background) */
.modal {
2020-03-09 13:20:20 +01:00
display: none;
position: fixed;
2024-01-30 12:18:28 +01:00
z-index: 1;
padding-top: 50px;
//padding-bottom: 10%;
2020-03-09 13:20:20 +01:00
left: 0;
top: 0;
2024-01-30 12:18:28 +01:00
width: 100%;
height: 100%;;
2024-01-30 12:18:28 +01:00
overflow: auto;
background-color: black;
2020-03-09 13:20:20 +01:00
}
2024-01-30 12:18:28 +01:00
/* Modal Content */
.modal-content {
2020-03-09 13:20:20 +01:00
position: relative;
2024-01-30 12:18:28 +01:00
background-color: #fefefe;
margin: auto;
padding: 0;
width: 90%;
max-width: 1200px;
height: calc(100% - 100px);
2020-03-09 13:20:20 +01:00
}
2024-01-30 12:18:28 +01:00
/* The Close Button */
.close {
color: white;
position: absolute;
top: 10px;
right: 25px;
font-size: 35px;
font-weight: bold;
2020-03-09 13:20:20 +01:00
}
2024-01-30 12:18:28 +01:00
.close:hover,
.close:focus {
color: #999;
text-decoration: none;
cursor: pointer;
2020-03-09 13:20:20 +01:00
}
2024-01-30 12:18:28 +01:00
/* Hide the slides by default */
.snap-slide {
2024-01-30 12:18:28 +01:00
display: none;
max-height: 100%;
img {
max-height: 100%;
}
2020-03-09 13:20:20 +01:00
}
2024-01-30 12:18:28 +01:00
/* Next & previous buttons */
.prev,
.next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
padding: 16px;
margin-top: -50px;
color: white;
font-weight: bold;
font-size: 20px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
-webkit-user-select: none;
text-decoration: none !important;
2024-01-30 12:18:28 +01:00
}
/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
2020-03-09 13:20:20 +01:00
}
2024-01-30 12:18:28 +01:00
/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
background-color: rgba(0, 0, 0, 0.8);
2020-03-09 13:20:20 +01:00
}
2024-01-30 12:18:28 +01:00
/* Number text (1/3 etc) */
.numbertext {
color: #f2f2f2;
background-color: #000;
2024-01-30 12:18:28 +01:00
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
2020-03-09 13:20:20 +01:00
}
2024-01-30 12:18:28 +01:00
/* Caption text */
.caption-container {
text-align: center;
background-color: black;
padding: 2px 16px;
color: white;
2020-03-09 13:20:20 +01:00
}
img.img-thumb {
2024-01-30 12:18:28 +01:00
opacity: 0.6;
2020-03-09 13:20:20 +01:00
}
2024-01-30 12:18:28 +01:00
.img-active,
.img-thumb:hover {
2024-01-30 12:18:28 +01:00
opacity: 1 !important;
2020-03-09 13:20:20 +01:00
}
2024-01-30 12:18:28 +01:00
img.hover-shadow {
transition: 0.3s;
2020-03-09 13:20:20 +01:00
}
2024-01-30 12:18:28 +01:00
.hover-shadow:hover {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
2019-10-20 22:27:27 +02:00
}