/*
2 * jQuery Lightbox Plugin (balupton edition) - Lightboxes for jQuery
3 * Copyright (C) 2008 Benjamin Arthur Lupton
4 * http://jquery.com/plugins/project/jquerylightbox_bal
5 *
6 * This file is part of jQuery Lightbox (balupton edition).
7 *
8 * jQuery Lightbox (balupton edition) is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as
10 * published by the Free Software Foundation, either version 3 of the
11 * License, or (at your option) any later version.
12 *
13 * jQuery Lightbox (balupton edition) is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Affero General Public License for more details.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with jQuery Lightbox (balupton edition). If not, see <http://www.gnu.org/licenses/>.
20 *
21 * @name jquery_lightbox: jquery.lightbox.css
22 * @package jQuery Lightbox Plugin (balupton edition)
23 * @version 1.3.0-rc1
24 * @date August 24, 2008
25 * @category jQuery plugin
26 * @author Benjamin "balupton" Lupton {@link http://www.balupton.com}
27 * @copyright (c) 2008 Benjamin Arthur Lupton {@link http://www.balupton.com}
28 * @license GNU Affero General Public License - {@link http://www.gnu.org/licenses/agpl.html}
29 * @example Visit {@link http://jquery.com/plugins/project/jquerylightbox_bal} for more information.
30 */
31
32html, body { margin: 0; padding: 0; height: 100%;}
33
34#lightbox, #lightbox-overlay {
35 position: absolute;
36 top: 0px;
37 left: 0px;
38 bottom:auto;
39 right:auto;
40
41 z-index:100;
42 width:100%;
43 height:auto;
44
45 text-align:center;
46 color:#333333;
47
48 /* stop stupid conflicts */
49 margin:0px;
50 padding:0px;
51 border:none;
52 outline:none;
53 line-height:0;
54
55 /* general conflict stopper */
56 text-decoration:none;
57 background:none;
58 word-spacing:normal;
59 letter-spacing:normal;
60 float:none;
61 clear:none;
62 display:block;
63}
64
65#lightbox a, #lightbox a:link, #lightbox a:visited, #lightbox a:hover {
66 text-decoration:underline;
67 color:#999999;
68}
69
70#lightbox-overlay {
71 z-index: 90;
72 background-color:#000000;
73 height: 100%;
74 position:fixed;
75}
76#lightbox-overlay-text {
77 text-align: right;
78 margin-right: 20px;
79 margin-top: 20px;
80 color: white;
81 font-size: 12px;
82 cursor: default;
83 line-height:normal;
84}
85#lightbox-overlay-text a, #lightbox-overlay-text a:hover, #lightbox-overlay-text a:visited, #lightbox-overlay-text a:link {
86 color:white;
87}
88#lightbox-overlay-text span {
89 padding-left:5px;
90 padding-right:5px;
91}
92
93#lightbox img, #lightbox a img, #lightbox a { border:none; outline:none; }
94
95#lightbox-imageBox {
96 position:relative;
97 border:1px solid black;
98 background-color:white;
99 width:400px;
100 height:400px;
101 margin:0 auto;
102}
103
104#lightbox-imageContainer {
105 padding:1px;
106}
107
108#lightbox-loading {
109 position:absolute;
110 top:40%;
111 left:0%;
112 height:25%;
113 width:100%;
114 text-align:center;
115 line-height:0;
116}
117
118#lightbox-nav {
119 position:absolute;
120 top:0;
121 left:0;
122 height:100%;
123 width:100%;
124 z-index:10;
125}
126/* #lightbox-imageBox > #lightbox-nav { left: 0; }
127#lightbox-nav a { outline: none; }*/
128
129
130#lightbox-nav-btnPrev, #lightbox-nav-btnNext {
131 display:block;
132 width:49%;
133 height: 100%;
134 background:transparent url("../images/blank.gif") no-repeat; /* Trick IE into showing hover */
135 /* cursor:pointer; */
136 zoom:1; /* who knows why? */
137
138 padding:0px;
139 margin:0px;
140}
141#lightbox-nav-btnPrev {
142 left:0;
143 right:auto;
144 float:left;
145}
146#lightbox-nav-btnNext {
147 left:auto;
148 right:0;
149 float:right;
150}
151/*
152.preload_largeLink, #prevLink:hover, #prevLink:visited:hover {
153 background:url("../images/prev.gif") left 45% no-repeat;
154}
155.preload_nextLink, #nextLink:hover, #nextLink:visited:hover {
156 background:url("../images/next.gif") right 45% no-repeat;
157}
158*/
159
160#lightbox-infoBox {
161 font:10px Verdana, Helvetica, sans-serif;
162 background-color:#FFFFFF;
163 margin:0 auto;
164 padding:0px;
165
166 /* width: 100%;
167 padding: 0 10px 0; */
168}
169
170#lightbox-infoContainer {
171 padding-left:10px;
172 padding-right:10px;
173 padding-top:5px;
174 padding-bottom:5px;
175 color:#666;
176
177 line-height:normal;
178 /* height:30px; */
179}
180#lightbox-infoHeader {
181 width:100%;
182 text-align:center;
183}
184#lightbox-caption {
185 text-align:justify;
186}
187#lightbox-caption-title {
188 font-weight:bold;
189}
190#lightbox-caption-description {
191 font-weight:normal;
192}
193
194#lightbox-infoFooter {
195 margin-top:3px;
196 color:#999999;
197}
198#lightbox-currentNumber {
199 display:block;
200 width:49%;
201 float:left;
202 text-align:left;
203}
204#lightbox-close {
205 display:block;
206 width:45%;
207 float:right;
208 text-align:right;
209}
210#lightbox-close-button{
211 padding-left:30%;
212}
213#lightbox-close-button:hover {
214 color:#666666;
215}
216
217#lightbox-infoContainer-clear {
218 clear:both;
219 visibility:hidden;
220}
