1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
/* Styles for the gallery */
.tz-gallery {
padding-top: 1rem;
padding-bottom: 1rem;
}
.tz-gallery figure {
overflow: visible!important;
margin-bottom: 1rem;
}
.tz-gallery .thumbnail {
padding: 0;
margin-bottom: 30px;
border: none;
}
.tz-gallery img {
border-radius: 3px;
}
.tz-gallery .caption{
padding: 26px 30px;
text-align: center;
}
.tz-gallery .caption p {
font-size: 12px;
color: #7b7d7d;
margin: 0;
}
.tz-gallery .lightbox img {
width: 100%;
margin-bottom: 5px;
transition: 0.2s ease-in-out;
box-shadow: 0 2px 3px rgba(0,0,0,0.2);
}
.tz-gallery .lightbox img:hover {
transform: scale(1.01);
box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}
.baguetteBox-button {
background-color: transparent !important;
}
@media(max-width: 768px) {
body {
padding: 0;
}
.container.gallery-container {
border-radius: 0;
}
}
|