forked from ashleydw/lightbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ekko-lightbox.less
64 lines (56 loc) · 1.07 KB
/
ekko-lightbox.less
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*!
* 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;
}
}