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

43 lines
726 B
CSS
Raw Normal View History

2018-04-02 08:29:19 +02:00
.galleryGalleryPicture {
display: block;
border: 1px solid #DDD;
height: 150px;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
position: relative;
-webkit-transition: opacity .3s ease-out;
transition: opacity .3s ease-out;
}
.galleryGalleryPicture:hover {
opacity: .7;
}
.galleryGalleryName {
position: absolute;
left: 0;
right: 0;
bottom: 0;
padding: 6px;
2018-04-02 08:29:19 +02:00
background: rgba(0, 0, 0, .6);
color: #FFF;
text-align: center;
}
.galleryRow {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.colPicture {
width : 16em;
max-width: 50%;
margin: 0.5em;
}
@media (max-width: 432px) {
.colPicture {
width: 90%;
max-width: 90%;
margin: 0.5em;
}
}