forked from ZwiiCMS-Team/ZwiiCMS
24 lines
456 B
CSS
24 lines
456 B
CSS
|
.galleryPicture {
|
||
|
display: block;
|
||
|
border: 1px solid #DDD;
|
||
|
height: 200px;
|
||
|
background-size: cover;
|
||
|
background-repeat: no-repeat;
|
||
|
background-position: center;
|
||
|
position: relative;
|
||
|
-webkit-transition: opacity .3s ease-out;
|
||
|
transition: opacity .3s ease-out;
|
||
|
}
|
||
|
.galleryPicture:hover {
|
||
|
opacity: .7;
|
||
|
}
|
||
|
.galleryName {
|
||
|
position: absolute;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
padding: 10px;
|
||
|
background: rgba(0, 0, 0, .6);
|
||
|
color: #FFF;
|
||
|
text-align: center;
|
||
|
}
|