ZwiiCMS/module/gallery/view/gallery/gallery.css

59 lines
964 B
CSS
Raw Normal View History

2020-03-23 10:08:05 +01:00
.gallery {
padding: 5px;
2018-04-02 08:29:19 +02:00
position: relative;
}
2020-03-23 10:08:05 +01:00
.galleryGalleryPicture {
display: flex;
align-items: center;
justify-content: center;
position: relative;
height: 110px;
text-align: center;
background-color: rgba(230, 230, 230, 0.7);
border: 1px solid #DDD;
border-radius: 6px;
2018-04-02 08:29:19 +02:00
}
.galleryGalleryName {
position: absolute;
left: 0;
right: 0;
bottom: 0;
2020-03-23 10:08:05 +01:00
line-height: 1.2;
color: #000;
overflow: hidden;
}
.galleryGalleryPicture img {
max-height: 80%;
max-width: 95%;
}
.galleryGalleryPicture img:hover {
z-index: 2;
}
.picResized {
color: crimson;
}
.osm {
position: absolute;
left:10px;
bottom:10px;
}
/* !important obligatoire */
@media (max-width: 1281px) {
.galleryGalleryPicture {
height: 160px !important;
}
}
@media (max-width: 1025px) {
.galleryGalleryPicture {
height: 145px !important;
}
.galleryGalleryName {
font-size: 0.85em !important;
}
}
@media (max-width: 813px) {
.galleryGalleryPicture {
height: 115px !important;
}
}