-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlBoxGallery.css
More file actions
144 lines (121 loc) · 2.12 KB
/
lBoxGallery.css
File metadata and controls
144 lines (121 loc) · 2.12 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/* Style for the lightbox
-------------------------
*/
#lBG-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
z-index:998;
background:#000 url(img/loader.gif) no-repeat scroll center center;
}
.lBG-lightbox-set{
margin: 20px 10px 20px 10px;
}
.lBG-lightbox-set img{
margin: 5px 5px 8px 5px;
border: solid 3px #FAFAFA;
border-radius: 2px;
}
#lBG-lightbox{
position:fixed;
z-index:999;
border: solid 8px #FAFAFA;
border-radius: 4px;
}
#lBG-lightbox img{
vertical-align: middle;
}
img:hover.lBG-lightbox{
opacity: 0.8;
cursor: pointer;
cursor: hand;
}
#lBG-title-wrapper {
background-color: rgba(0, 0, 0, 0.7);
height: 50px;
border-radius: 5px 0px 0px 5px;
position: absolute;
bottom: 20px;
right: 0px;
white-space: nowrap;
}
#lBG-title {
color: #CCCCCC;
font-weight: bold;
padding: 0px 15px 0px 15px;
}
#lBG-title p {
vertical-align: middle;
}
/* Style for the gallery
-------------------------
*/
.lBG-gallery-set {
margin: 20px 10px 20px 10px;
}
#lBG-gallery{
list-style-type: none;
padding: 0px;
}
#lBG-gallery li {
display: inline;
}
#lBG-gallery li img {
border: solid 3px #FAFAFA;
border-radius: 2px;
margin: 5px 5px 8px 5px;
}
#lBG-gallery li img:hover {
opacity: 0.8;
cursor: pointer;
cursor: hand;
}
/* the nav-lBG-arrow */
#lBG-arrow-right {
width: 50px;
height: 50px;
border-radius: 5px 0px 0px 5px;
position: absolute;
background: #000000;
opacity: 0;
}
#lBG-arrow-left {
width: 50px;
height: 50px;
border-radius: 0px 5px 5px 0px;
position: absolute;
background: #000000;
opacity: 0;
}
#lBG-arrow-right:hover,
#lBG-arrow-left:hover {
opacity: 0.8 !important;
cursor: pointer;
cursor: hand;
}
#lBG-arrow-right-icon {
width: 0;
height: 0;
position: absolute;
border-style: solid;
border-width: 15px 0 15px 26.0px;
border-color: transparent transparent transparent #fafafa;
}
#lBG-arrow-left-icon {
width: 0;
height: 0;
position: absolute;
border-style: solid;
border-width: 15px 26.0px 15px 0;
border-color: transparent #fafafa transparent transparent;
}
#lBG-arrow-right-icon {
top: 10px;
right: 10px;
}
#lBG-arrow-left-icon {
top: 10px;
right: 15px;
}