| 1 |
/* |
| 2 |
* FancyBox - jQuery Plugin |
| 3 |
* Simple and fancy lightbox alternative |
| 4 |
* |
| 5 |
* Examples and documentation at: http://fancybox.net |
| 6 |
* |
| 7 |
* Copyright (c) 2008 - 2010 Janis Skarnelis |
| 8 |
* Modified 2012 Nikola Vidoni (mobile ready, CSS3 optimizations, dropped IE6-7 support for shadows & opacity) |
| 9 |
* That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated. |
| 10 |
* |
| 11 |
* Version: 1.3.6 (22/11/2012) |
| 12 |
* Requires: jQuery v1.3+ |
| 13 |
* |
| 14 |
* Dual licensed under the MIT and GPL licenses: |
| 15 |
* http://www.opensource.org/licenses/mit-license.php |
| 16 |
* http://www.gnu.org/licenses/gpl.html |
| 17 |
*/ |
| 18 |
|
| 19 |
#fancybox_vg-loading_ { |
| 20 |
position: fixed; |
| 21 |
top: 50%; |
| 22 |
left: 50%; |
| 23 |
margin-top: -22px; |
| 24 |
margin-left: -22px; |
| 25 |
width: 44px; |
| 26 |
height: 44px; |
| 27 |
background: url('../images/vl-box/controls.png') 0 -108px; |
| 28 |
opacity: 0.8; |
| 29 |
cursor: pointer; |
| 30 |
z-index: 1000000; |
| 31 |
display: none; |
| 32 |
} |
| 33 |
|
| 34 |
#fancybox_vg-loading_ div { |
| 35 |
width: 44px; |
| 36 |
height: 44px; |
| 37 |
background: url('../images/vl-box/loading.gif') center center no-repeat; |
| 38 |
} |
| 39 |
|
| 40 |
#fancybox_vg-overlay { |
| 41 |
position: absolute; |
| 42 |
top: 0; |
| 43 |
left: 0; |
| 44 |
width: 100%; |
| 45 |
z-index: 1100; |
| 46 |
display: none; |
| 47 |
box-sizing:content-box; |
| 48 |
|
| 49 |
} |
| 50 |
|
| 51 |
#fancybox_vg-tmp { |
| 52 |
padding: 0; |
| 53 |
margin: 0; |
| 54 |
border: 0; |
| 55 |
overflow: auto; |
| 56 |
display: none; |
| 57 |
} |
| 58 |
|
| 59 |
#fancybox_vg-wrap { |
| 60 |
position: absolute; |
| 61 |
top: 0; |
| 62 |
left: 0; |
| 63 |
padding: 20px; |
| 64 |
z-index: 1101; |
| 65 |
outline: none; |
| 66 |
display: none; |
| 67 |
z-index:9999; |
| 68 |
box-sizing:content-box; |
| 69 |
|
| 70 |
|
| 71 |
} |
| 72 |
|
| 73 |
#fancybox_vg-outer { |
| 74 |
position: relative; |
| 75 |
width: 100%; |
| 76 |
height: 100%; |
| 77 |
background: #fff; |
| 78 |
-webkit-box-shadow: 0px 0px 15px rgba(0,0,0,0.50); |
| 79 |
-moz-box-shadow: 0px 0px 15px rgba(0,0,0,0.50); |
| 80 |
box-shadow: 0px 0px 15px rgba(0,0,0,0.50); |
| 81 |
filter: progid: DXImageTransform.Microsoft.Blur (pixelradius = 15, enabled = "true") ; |
| 82 |
box-sizing:content-box; |
| 83 |
} |
| 84 |
|
| 85 |
#fancybox_vg-content { |
| 86 |
width: 0; |
| 87 |
height: 0; |
| 88 |
padding: 0; |
| 89 |
outline: none; |
| 90 |
position: relative; |
| 91 |
overflow: hidden; |
| 92 |
z-index: 1102; |
| 93 |
border: 0px solid #fff; |
| 94 |
box-sizing:content-box; |
| 95 |
|
| 96 |
} |
| 97 |
|
| 98 |
#fancybox_vg-hide-sel-frame { |
| 99 |
position: absolute; |
| 100 |
top: 0; |
| 101 |
left: 0; |
| 102 |
width: 100%; |
| 103 |
height: 100%; |
| 104 |
background: transparent; |
| 105 |
z-index: 1101; |
| 106 |
box-sizing:content-box; |
| 107 |
|
| 108 |
|
| 109 |
} |
| 110 |
|
| 111 |
#fancybox_vg-close { |
| 112 |
position: absolute; |
| 113 |
top: -18px; |
| 114 |
right: -18px; |
| 115 |
width: 36px; |
| 116 |
height: 36px; |
| 117 |
background: url('../images/vl-box/controls.png') 0 0 no-repeat; |
| 118 |
cursor: pointer; |
| 119 |
z-index: 1103; |
| 120 |
display: none; |
| 121 |
} |
| 122 |
|
| 123 |
#fancybox_vg-error { |
| 124 |
color: #444; |
| 125 |
font: normal 12px/20px Arial, Helvetica, sans-serif; |
| 126 |
padding: 14px; |
| 127 |
margin: 0; |
| 128 |
} |
| 129 |
|
| 130 |
#fancybox_vg-img { |
| 131 |
max-width: 100%; |
| 132 |
max-height: 100%; |
| 133 |
padding: 0; |
| 134 |
margin: 0; |
| 135 |
border: none; |
| 136 |
outline: none; |
| 137 |
} |
| 138 |
|
| 139 |
#fancybox_vg-frame { |
| 140 |
width: 100%; |
| 141 |
height: 100%; |
| 142 |
border: none; |
| 143 |
display: block; |
| 144 |
box-sizing:content-box; |
| 145 |
|
| 146 |
|
| 147 |
} |
| 148 |
|
| 149 |
#fancybox_vg-left_, #fancybox_vg-right_{ |
| 150 |
position: absolute; |
| 151 |
bottom: 0px; |
| 152 |
height: 34px; |
| 153 |
width: 7%; |
| 154 |
cursor: pointer; |
| 155 |
outline: none; |
| 156 |
z-index: 1102; |
| 157 |
display: none; |
| 158 |
top:50%; |
| 159 |
margin-top: -16px; |
| 160 |
} |
| 161 |
|
| 162 |
#fancybox_vg-left_ { |
| 163 |
left: 0px; |
| 164 |
} |
| 165 |
|
| 166 |
#fancybox_vg-right_ { |
| 167 |
right: 0px; |
| 168 |
} |
| 169 |
|
| 170 |
#fancybox_vg-left-ico_, #fancybox_vg-right-ico_ { |
| 171 |
position: absolute; |
| 172 |
top: 50%; |
| 173 |
left: -9999px; |
| 174 |
width: 36px; |
| 175 |
height: 36px; |
| 176 |
margin-top: -15px; |
| 177 |
cursor: pointer; |
| 178 |
z-index: 1102; |
| 179 |
display: block; |
| 180 |
} |
| 181 |
|
| 182 |
#fancybox_vg-left-ico_ { |
| 183 |
background: url('../images/vl-box/controls.png') 0 -36px no-repeat; |
| 184 |
} |
| 185 |
|
| 186 |
#fancybox_vg-right-ico_ { |
| 187 |
background: url('../images/vl-box/controls.png') 0 -72px no-repeat; |
| 188 |
} |
| 189 |
|
| 190 |
#fancybox_vg-left_:hover span { |
| 191 |
left: 19px; |
| 192 |
} |
| 193 |
|
| 194 |
#fancybox_vg-right_:hover span { |
| 195 |
left: auto; |
| 196 |
right: 19px; |
| 197 |
} |
| 198 |
|
| 199 |
#fancybox_vg-title { |
| 200 |
font-family: Arial, Helvetica, sans-serif; |
| 201 |
font-size: 12px; |
| 202 |
z-index: 1102; |
| 203 |
background:#000; |
| 204 |
} |
| 205 |
|
| 206 |
.fancybox_vg-title-inside { |
| 207 |
position: relative; |
| 208 |
padding-bottom: 10px; |
| 209 |
color: #333; |
| 210 |
text-align: center; |
| 211 |
background: #fff; |
| 212 |
} |
| 213 |
|
| 214 |
.fancybox_vg-title-outside { |
| 215 |
/*padding-top: 10px;*/ |
| 216 |
color: #fff; |
| 217 |
} |
| 218 |
|
| 219 |
.fancybox_vg-title-over { |
| 220 |
position: absolute; |
| 221 |
bottom: 0; |
| 222 |
left: 0; |
| 223 |
color: #fff; |
| 224 |
text-align: left; |
| 225 |
} |
| 226 |
|
| 227 |
#fancybox_vg-title-over { |
| 228 |
display: block; |
| 229 |
padding: 10px; |
| 230 |
background-color: #000; |
| 231 |
background-color: rgba(0,0,0,0.5); |
| 232 |
} |
| 233 |
|
| 234 |
.fancybox_vg-title-float { |
| 235 |
position: absolute; |
| 236 |
bottom: -20px; |
| 237 |
padding: 6px 12px; |
| 238 |
width: auto; |
| 239 |
color: #fff; |
| 240 |
font-weight: bold; |
| 241 |
white-space: nowrap; |
| 242 |
background-color: rgb(0, 0, 0); |
| 243 |
background-color: rgba(0, 0, 0, 0.7); |
| 244 |
-webkit-border-radius: 6px; |
| 245 |
-moz-border-radius: 6px; |
| 246 |
border-radius: 6px; |
| 247 |
} |
| 248 |
.Imglink{ |
| 249 |
color: #fff; |
| 250 |
font-size: 13px; |
| 251 |
font-weight: bold; |
| 252 |
} |
| 253 |
.clear_description_{margin-top: 5px;line-height:18px;color:#ffffff} |
| 254 |
.playbtnCss { |
| 255 |
display: block; |
| 256 |
position: absolute; |
| 257 |
top: 0; |
| 258 |
left: 0; |
| 259 |
bottom: 0; |
| 260 |
right: 0; |
| 261 |
z-index: 1; |
| 262 |
background: url("../images/vl-box/1440364028_button-play_basic_blue.png") no-repeat center center; |
| 263 |
} |
| 264 |
|