-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstrap-lightbox.css
executable file
·72 lines (65 loc) · 1.44 KB
/
bootstrap-lightbox.css
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
65
66
67
68
69
70
71
72
/*!
* bootstrap-lightbox.css v0.6.0
* Copyright 2013 Jason Butz
* http://www.apache.org/licenses/LICENSE-2.0.txt
*/
.lightbox {
position: relative;
top: 70px;
z-index: 1050;
line-height: 0;
text-align: center;
background-color: transparent;
outline: none;
}
.lightbox .hide {
display: none;
}
.lightbox .in {
display: block;
}
.lightbox-content {
display: inline-block;
padding: 10px;
background-color: #ffffff;
border: 1px solid #999;
border: 1px solid rgba(0, 0, 0, 0.3);
*border: 1px solid #999;
/* IE6-7 */
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
-webkit-background-clip: padding-box;
-moz-background-clip: padding-box;
background-clip: padding-box;
}
.lightbox-content .lightbox-caption {
position: absolute;
right: 12px;
bottom: 11px;
left: 11px;
padding: 2%;
font-size: 14px;
line-height: 18px;
color: white;
text-align: center;
text-shadow: 0 -1px 0 #000000;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
background: #000;
background: rgba(0, 0, 0, 0.6);
}
.lightbox-header .close {
margin-top: -16px;
margin-right: -16px;
font-size: 2em;
color: white;
opacity: .8;
filter: alpha(opacity=80);
}
.lightbox-header .close :hover {
opacity: .4;
filter: alpha(opacity=40);
}