all
This commit is contained in:
@ -0,0 +1,65 @@
|
||||
/*!
|
||||
* Lightbox for Bootstrap 3 by @ashleydw
|
||||
* https://github.com/ashleydw/lightbox
|
||||
*
|
||||
* License: https://github.com/ashleydw/lightbox/blob/master/LICENSE
|
||||
*/
|
||||
|
||||
.ekko-lightbox {
|
||||
&-container {
|
||||
position:relative;
|
||||
}
|
||||
|
||||
&-nav-overlay {
|
||||
z-index:100;
|
||||
position: absolute;
|
||||
top:0;
|
||||
left:0;
|
||||
width:100%;
|
||||
height:100%;
|
||||
|
||||
a {
|
||||
opacity: 0;
|
||||
-webkit-transition: opacity 0.5s;
|
||||
-moz-transition: opacity 0.5s;
|
||||
-o-transition: opacity 0.5s;
|
||||
transition: opacity 0.5s;
|
||||
color:#fff;
|
||||
font-size:30px;
|
||||
height: 100%;
|
||||
width:49%;
|
||||
display:block;
|
||||
text-shadow: 2px 2px 4px #000;
|
||||
filter: dropshadow(color=#000, offx=2, offy=2);
|
||||
z-index:100;
|
||||
|
||||
&:empty {
|
||||
width:49%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
a:hover {
|
||||
opacity: 1;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.glyphicon-chevron-left {
|
||||
padding-left:15px;
|
||||
float:left;
|
||||
left:0;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.glyphicon-chevron-right {
|
||||
padding-right:15px;
|
||||
float:right;
|
||||
right:0;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.modal-footer {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user