1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/bozon_ynh.git synced 2024-09-03 18:16:09 +02:00
bozon_ynh/sources/templates/default/css/lightbox.css
2016-03-23 19:30:43 +01:00

85 lines
No EOL
1.8 KiB
CSS

#lb_overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 0;
opacity:0;
background: #000; /* IE 8 not support rgba */
filter: alpha(opacity = 90); /* IE 8 not support opacity */
background: rgba(0, 0, 0, 0.9);
z-index: 9999;
overflow:hidden;
transition: all 300ms;
}
#lb_overlay iframe{
height: 100%;
width: 100%;
border:none;
background:white;
}
#lb_nav{
/*background:rgba(0,0,0,0.4);*/
position:fixed;
bottom:0;
left:0;
width:100%;
height:0;
opacity:0;
z-index: 1;
}
#lb_content-info {
background:rgba(0,0,0,0.4);
line-height: 1.8em;
font-size: 1.2em;
display: block;
width:auto;
height: 40px;
margin:auto;
color:white;
text-shadow:0 0 2px black;
text-align:center;
}
#lb_close{
background:url(../img/lightbox/close_white.png) no-repeat center center;
width:32px;height:32px;
z-index: 10000;
float:right;
cursor:pointer;
margin-top: 3px;
}
#lb_next,#lb_prev{
width:32px;height:32px; margin-top: 3px;
z-index: 10000;
float:left;
cursor:pointer;
}
#lb_next:hover,#lb_prev:hover{background-color:rgba(0,0,0,0.7);}
#lb_next{
background:url(../img/lightbox/next.png) no-repeat center center;
}
#lb_prev{
background:url(../img/lightbox/prev.png) no-repeat center center;
}
#lb_content {
max-height: 100%; transition: all 300ms; height:100%;
}
#lb_content img {
transition: all 300ms;
/* Keeps image from going outside the screen */
max-height: 100%;
max-width: 100%;
/* Keeps image from beeing distorted */
height: auto;
width: auto;
/* centering horizontally AND vertically */
/* 50% of container */
position: relative;
top: 50%;
left: 50%;
/* 50% of image */
transform: translate(-50%,-50%);
}