2020-04-18 16:33:48 +02:00
|
|
|
.galleryPicture,
|
|
|
|
.galleryGalleryPicture {
|
|
|
|
display: block;
|
|
|
|
border: var(--thumbBorder) solid var(--thumbBorderColor);
|
|
|
|
height: var(--thumbHeight);
|
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
position: relative;
|
|
|
|
-webkit-transition: opacity .3s ease-out;
|
|
|
|
transition: opacity .3s ease-out;
|
2020-04-18 19:18:34 +02:00
|
|
|
border-radius: var(--thumbRadius);
|
2020-04-19 19:43:37 +02:00
|
|
|
box-shadow: var(--thumbShadows) var(--thumbShadowsColor);
|
|
|
|
-webkit-box-shadow: var(--thumbShadows) var(--thumbShadowsColor);
|
|
|
|
-moz-box-shadow: var(--thumbShadows) var(--thumbShadowsColor);
|
2020-04-18 16:33:48 +02:00
|
|
|
}
|
|
|
|
.galleryPicture:hover,
|
|
|
|
.galleryGalleryPicture:hover {
|
|
|
|
opacity: var(--thumbOpacity);
|
|
|
|
}
|
|
|
|
.galleryName,
|
|
|
|
.galleryGalleryName {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
2020-04-19 14:58:38 +02:00
|
|
|
border-radius: 0 0 calc(var(--thumbRadius)/2) calc(var(--thumbRadius)/2);
|
2020-04-18 16:33:48 +02:00
|
|
|
padding: var(--legendHeight);
|
|
|
|
background: var(--legendBgColor);
|
|
|
|
color: var(--legendTextColor);
|
|
|
|
text-align: var(--legendAlign);
|
|
|
|
}
|
|
|
|
|
|
|
|
.galleryRow {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: var(--thumbAlign);
|
|
|
|
}
|
|
|
|
|
|
|
|
.colPicture {
|
|
|
|
width : var(--thumbWidth);
|
|
|
|
max-width: 50%;
|
2020-04-18 19:18:34 +02:00
|
|
|
padding: var(--thumbMargin);
|
2020-04-18 16:33:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 432px) {
|
|
|
|
.colPicture {
|
|
|
|
width: 90%;
|
|
|
|
max-width: 90%;
|
|
|
|
margin: 0.5em;
|
|
|
|
}
|
|
|
|
}
|