lightgallery.css 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824
  1. /*! lightgallery - v1.2.0 - 2015-08-26
  2. * http://sachinchoolur.github.io/lightGallery/
  3. * Copyright (c) 2015 Sachin N; Licensed Apache 2.0 */
  4. @font-face {
  5. /* font-family: 'lg';
  6. src: url("../fonts/lg.eot?n1z373");
  7. src: url("../fonts/lg.eot?#iefixn1z373") format("embedded-opentype"), url("../fonts/lg.woff?n1z373") format("woff"), url("../fonts/lg.ttf?n1z373") format("truetype"), url("../fonts/lg.svg?n1z373#lg") format("svg");*/
  8. font-weight: normal;
  9. font-style: normal;
  10. }
  11. .lg-icon {
  12. font-family: 'lg';
  13. speak: none;
  14. font-style: normal;
  15. font-weight: normal;
  16. font-variant: normal;
  17. text-transform: none;
  18. line-height: 1;
  19. /* Better Font Rendering =========== */
  20. -webkit-font-smoothing: antialiased;
  21. -moz-osx-font-smoothing: grayscale;
  22. }
  23. .lg-actions .lg-next, .lg-actions .lg-prev {
  24. background-color: rgba(0, 0, 0, 0.45);
  25. border-radius: 2px;
  26. color: #999;
  27. cursor: pointer;
  28. display: block;
  29. font-size: 22px;
  30. margin-top: -10px;
  31. padding: 8px 10px 9px;
  32. position: absolute;
  33. top: 50%;
  34. z-index: 1080;
  35. }
  36. .lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
  37. pointer-events: none;
  38. opacity: 0.5;
  39. }
  40. .lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
  41. color: #FFF;
  42. }
  43. .lg-actions .lg-next {
  44. right: 20px;
  45. }
  46. .lg-actions .lg-next:before {
  47. content: "\e095";
  48. }
  49. .lg-actions .lg-prev {
  50. left: 20px;
  51. }
  52. .lg-actions .lg-prev:after {
  53. content: "\e094";
  54. }
  55. @-webkit-keyframes lg-right-end {
  56. 0% {
  57. left: 0;
  58. }
  59. 50% {
  60. left: -30px;
  61. }
  62. 100% {
  63. left: 0;
  64. }
  65. }
  66. @-moz-keyframes lg-right-end {
  67. 0% {
  68. left: 0;
  69. }
  70. 50% {
  71. left: -30px;
  72. }
  73. 100% {
  74. left: 0;
  75. }
  76. }
  77. @-ms-keyframes lg-right-end {
  78. 0% {
  79. left: 0;
  80. }
  81. 50% {
  82. left: -30px;
  83. }
  84. 100% {
  85. left: 0;
  86. }
  87. }
  88. @keyframes lg-right-end {
  89. 0% {
  90. left: 0;
  91. }
  92. 50% {
  93. left: -30px;
  94. }
  95. 100% {
  96. left: 0;
  97. }
  98. }
  99. @-webkit-keyframes lg-left-end {
  100. 0% {
  101. left: 0;
  102. }
  103. 50% {
  104. left: 30px;
  105. }
  106. 100% {
  107. left: 0;
  108. }
  109. }
  110. @-moz-keyframes lg-left-end {
  111. 0% {
  112. left: 0;
  113. }
  114. 50% {
  115. left: 30px;
  116. }
  117. 100% {
  118. left: 0;
  119. }
  120. }
  121. @-ms-keyframes lg-left-end {
  122. 0% {
  123. left: 0;
  124. }
  125. 50% {
  126. left: 30px;
  127. }
  128. 100% {
  129. left: 0;
  130. }
  131. }
  132. @keyframes lg-left-end {
  133. 0% {
  134. left: 0;
  135. }
  136. 50% {
  137. left: 30px;
  138. }
  139. 100% {
  140. left: 0;
  141. }
  142. }
  143. .lg-outer.lg-right-end .lg-object {
  144. -webkit-animation: lg-right-end 0.3s;
  145. -o-animation: lg-right-end 0.3s;
  146. animation: lg-right-end 0.3s;
  147. position: relative;
  148. }
  149. .lg-outer.lg-left-end .lg-object {
  150. -webkit-animation: lg-left-end 0.3s;
  151. -o-animation: lg-left-end 0.3s;
  152. animation: lg-left-end 0.3s;
  153. position: relative;
  154. }
  155. .lg-toolbar {
  156. z-index: 1080;
  157. left: 0;
  158. position: absolute;
  159. top: 2%;
  160. width: 100%;
  161. background-color: rgba(0, 0, 0, 0.45);
  162. }
  163. .lg-toolbar .lg-icon {
  164. color: #999;
  165. cursor: pointer;
  166. float: right;
  167. font-size: 24px;
  168. height: 47px;
  169. line-height: 27px;
  170. padding: 10px 0;
  171. text-align: center;
  172. width: 50px;
  173. text-decoration: none !important;
  174. outline: medium none;
  175. }
  176. .lg-toolbar .lg-icon:hover {
  177. color: #FFF;
  178. }
  179. .lg-toolbar .lg-close:after {
  180. /*content: "\e070";*/
  181. }
  182. .lg-toolbar .lg-download:after {
  183. /*content: "\e0f2";*/
  184. }
  185. .lg-sub-html {
  186. background-color: rgba(0, 0, 0, 0.45);
  187. bottom: 18%;
  188. color: #EEE;
  189. font-size: 16px;
  190. left: 0;
  191. padding: 10px 2%;
  192. position: fixed;
  193. right: 0;
  194. text-align: center;
  195. z-index: 1080;
  196. text-align:left;
  197. }
  198. .optionMore {
  199. background-color: rgba(0, 0, 0, 0.45);
  200. bottom: 0px;
  201. color: #EEE;
  202. font-size: 16px;
  203. left: 0;
  204. position: fixed;
  205. right: 0;
  206. text-align: center;
  207. z-index: 1080;
  208. text-align: left;
  209. }
  210. .lg-sub-html h4 {
  211. margin: 0;
  212. font-size: 13px;
  213. font-weight: bold;
  214. }
  215. .lg-sub-html p {
  216. font-size: 12px;
  217. margin: 5px 0 0;
  218. }
  219. #lg-counter {
  220. color: #999;
  221. display: inline-block;
  222. font-size: 16px;
  223. padding-left: 20px;
  224. padding-top: 16px;
  225. vertical-align: middle;
  226. }
  227. .lg-toolbar, .lg-prev, .lg-next {
  228. opacity: 1;
  229. -webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
  230. -moz-transition: -moz-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
  231. -o-transition: -o-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
  232. transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
  233. }
  234. .lg-hide-items .lg-prev {
  235. opacity: 0;
  236. -webkit-transform: translate3d(-10px, 0, 0);
  237. transform: translate3d(-10px, 0, 0);
  238. }
  239. .lg-hide-items .lg-next {
  240. opacity: 0;
  241. -webkit-transform: translate3d(10px, 0, 0);
  242. transform: translate3d(10px, 0, 0);
  243. }
  244. .lg-hide-items .lg-toolbar {
  245. opacity: 0;
  246. -webkit-transform: translate3d(0, -10px, 0);
  247. transform: translate3d(0, -10px, 0);
  248. }
  249. body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  250. -webkit-transform: scale3d(0.5, 0.5, 0.5);
  251. transform: scale3d(0.5, 0.5, 0.5);
  252. opacity: 0;
  253. -webkit-transition: -webkit-transform 250ms ease 0s, opacity 250ms !important;
  254. -moz-transition: -moz-transform 250ms ease 0s, opacity 250ms !important;
  255. -o-transition: -o-transform 250ms ease 0s, opacity 250ms !important;
  256. transition: transform 250ms ease 0s, opacity 250ms !important;
  257. -webkit-transform-origin: 50% 50%;
  258. -moz-transform-origin: 50% 50%;
  259. -ms-transform-origin: 50% 50%;
  260. transform-origin: 50% 50%;
  261. }
  262. body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  263. -webkit-transform: scale3d(1, 1, 1);
  264. transform: scale3d(1, 1, 1);
  265. opacity: 1;
  266. }
  267. .lg-outer .lg-thumb-outer {
  268. background-color: #0D0A0A;
  269. bottom: 0;
  270. position: absolute;
  271. width: 100%;
  272. z-index: 1080;
  273. max-height: 350px;
  274. -webkit-transform: translate3d(0, 100%, 0);
  275. transform: translate3d(0, 100%, 0);
  276. -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  277. -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  278. -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  279. transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  280. }
  281. .lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  282. cursor: -webkit-grab;
  283. cursor: -moz-grab;
  284. cursor: -o-grab;
  285. cursor: -ms-grab;
  286. cursor: grab;
  287. }
  288. .lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  289. cursor: move;
  290. cursor: -webkit-grabbing;
  291. cursor: -moz-grabbing;
  292. cursor: -o-grabbing;
  293. cursor: -ms-grabbing;
  294. cursor: grabbing;
  295. }
  296. .lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  297. -webkit-transition-duration: 0s !important;
  298. transition-duration: 0s !important;
  299. }
  300. .lg-outer.lg-thumb-open .lg-thumb-outer {
  301. -webkit-transform: translate3d(0, 0%, 0);
  302. transform: translate3d(0, 0%, 0);
  303. }
  304. .lg-outer .lg-thumb {
  305. padding: 10px 0;
  306. height: 100%;
  307. margin-bottom: -5px;
  308. }
  309. .lg-outer .lg-thumb-item {
  310. border-radius: 5px;
  311. cursor: pointer;
  312. float: left;
  313. overflow: hidden;
  314. height: 100%;
  315. border: 2px solid #FFF;
  316. border-radius: 4px;
  317. margin-bottom: 5px;
  318. }
  319. @media (min-width: 1025px) {
  320. .lg-outer .lg-thumb-item {
  321. -webkit-transition: border-color 0.25s ease;
  322. -o-transition: border-color 0.25s ease;
  323. transition: border-color 0.25s ease;
  324. }
  325. }
  326. .lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  327. border-color: #a90707;
  328. }
  329. .lg-outer .lg-thumb-item img {
  330. width: 100%;
  331. height: 100%;
  332. }
  333. .lg-outer.lg-has-thumb .lg-item {
  334. padding-bottom: 120px;
  335. }
  336. .lg-outer.lg-can-toggle .lg-item {
  337. padding-bottom: 0;
  338. }
  339. .lg-outer .lg-toogle-thumb {
  340. background-color: #0D0A0A;
  341. border-radius: 2px 2px 0 0;
  342. color: white;
  343. cursor: pointer;
  344. font-size: 26px;
  345. height: 39px;
  346. line-height: 27px;
  347. padding: 5px 0;
  348. position: absolute;
  349. right: 3%;
  350. text-align: center;
  351. top: -39px;
  352. width: 50px;
  353. }
  354. .lg-outer .lg-toogle-thumb:after {
  355. content: "\e1ff";
  356. }
  357. .lg-outer .lg-toogle-thumb:hover {
  358. color: #FFF;
  359. }
  360. .lg-outer .lg-video-cont {
  361. display: inline-block;
  362. vertical-align: middle;
  363. max-width: 1140px;
  364. max-height: 100%;
  365. width: 100%;
  366. padding: 0 5px;
  367. }
  368. .lg-outer .lg-video {
  369. width: 100%;
  370. height: 0;
  371. padding-bottom: 56.25%;
  372. overflow: hidden;
  373. position: relative;
  374. }
  375. .lg-outer .lg-video .lg-object {
  376. display: inline-block;
  377. position: absolute;
  378. top: 0;
  379. left: 0;
  380. width: 100% !important;
  381. height: 100% !important;
  382. }
  383. .lg-outer .lg-video .lg-video-play {
  384. width: 84px;
  385. height: 59px;
  386. position: absolute;
  387. left: 50%;
  388. top: 50%;
  389. margin-left: -42px;
  390. margin-top: -30px;
  391. z-index: 1080;
  392. cursor: pointer;
  393. }
  394. .lg-outer .lg-has-vimeo .lg-video-play {
  395. background: url("../images/vimeo-play.png") no-repeat scroll 0 0 transparent;
  396. }
  397. .lg-outer .lg-has-vimeo:hover .lg-video-play {
  398. background: url("../images/vimeo-play.png") no-repeat scroll 0 -58px transparent;
  399. }
  400. .lg-outer .lg-has-html5 .lg-video-play {
  401. background: transparent url("../images/video-play.png") no-repeat scroll 0 0;
  402. height: 64px;
  403. margin-left: -32px;
  404. margin-top: -32px;
  405. width: 64px;
  406. opacity: 0.8;
  407. }
  408. .lg-outer .lg-has-html5:hover .lg-video-play {
  409. opacity: 1;
  410. }
  411. .lg-outer .lg-has-youtube .lg-video-play {
  412. background: url("../images/youtube-play.png") no-repeat scroll 0 0 transparent;
  413. }
  414. .lg-outer .lg-has-youtube:hover .lg-video-play {
  415. background: url("../images/youtube-play.png") no-repeat scroll 0 -60px transparent;
  416. }
  417. .lg-outer .lg-video-object {
  418. width: 100% !important;
  419. height: 100% !important;
  420. position: absolute;
  421. top: 0;
  422. left: 0;
  423. }
  424. .lg-outer .lg-has-video .lg-video-object {
  425. visibility: hidden;
  426. }
  427. .lg-outer .lg-has-video.lg-video-palying .lg-object, .lg-outer .lg-has-video.lg-video-palying .lg-video-play {
  428. display: none;
  429. }
  430. .lg-outer .lg-has-video.lg-video-palying .lg-video-object {
  431. visibility: visible;
  432. }
  433. .lg-progress-bar {
  434. background-color: #333;
  435. height: 5px;
  436. left: 0;
  437. position: absolute;
  438. top: 0;
  439. width: 100%;
  440. z-index: 1080;
  441. opacity: 0;
  442. -webkit-transition: opacity 0.08s ease 0s;
  443. -moz-transition: opacity 0.08s ease 0s;
  444. -o-transition: opacity 0.08s ease 0s;
  445. transition: opacity 0.08s ease 0s;
  446. }
  447. .lg-progress-bar .lg-progress {
  448. background-color: #a90707;
  449. height: 5px;
  450. width: 0;
  451. }
  452. .lg-progress-bar.lg-start .lg-progress {
  453. width: 100%;
  454. }
  455. .lg-show-autoplay .lg-progress-bar {
  456. opacity: 1;
  457. }
  458. .lg-autoplay-button:after {
  459. content: "\e01d";
  460. }
  461. .lg-show-autoplay .lg-autoplay-button:after {
  462. content: "\e01a";
  463. }
  464. .lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap, .lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  465. -webkit-transition-duration: 0s;
  466. transition-duration: 0s;
  467. }
  468. .lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  469. -webkit-transition: -webkit-transform 0.3s ease 0s;
  470. -moz-transition: -moz-transform 0.3s ease 0s;
  471. -o-transition: -o-transform 0.3s ease 0s;
  472. transition: transform 0.3s ease 0s;
  473. -webkit-transform: translate3d(0, 0, 0);
  474. transform: translate3d(0, 0, 0);
  475. }
  476. .lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  477. -webkit-transform: scale3d(1, 1, 1);
  478. transform: scale3d(1, 1, 1);
  479. -webkit-transition: -webkit-transform 0.3s ease 0s, opacity 0.15s !important;
  480. -moz-transition: -moz-transform 0.3s ease 0s, opacity 0.15s !important;
  481. -o-transition: -o-transform 0.3s ease 0s, opacity 0.15s !important;
  482. transition: transform 0.3s ease 0s, opacity 0.15s !important;
  483. -webkit-transform-origin: 0 0;
  484. -moz-transform-origin: 0 0;
  485. -ms-transform-origin: 0 0;
  486. transform-origin: 0 0;
  487. }
  488. #lg-zoom-in:after {
  489. content: "\e311";
  490. }
  491. #lg-zoom-out {
  492. opacity: 0.5;
  493. pointer-events: none;
  494. }
  495. #lg-zoom-out:after {
  496. content: "\e312";
  497. }
  498. .lg-zoomed #lg-zoom-out {
  499. opacity: 1;
  500. pointer-events: auto;
  501. }
  502. .lg-outer .lg-pager-outer {
  503. bottom: 60px;
  504. left: 0;
  505. position: absolute;
  506. right: 0;
  507. text-align: center;
  508. z-index: 1080;
  509. height: 10px;
  510. }
  511. .lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  512. overflow: visible;
  513. }
  514. .lg-outer .lg-pager-cont {
  515. cursor: pointer;
  516. display: inline-block;
  517. overflow: hidden;
  518. position: relative;
  519. vertical-align: top;
  520. margin: 0 5px;
  521. }
  522. .lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  523. opacity: 1;
  524. -webkit-transform: translate3d(0, 0, 0);
  525. transform: translate3d(0, 0, 0);
  526. }
  527. .lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  528. box-shadow: 0 0 0 2px white inset;
  529. }
  530. .lg-outer .lg-pager-thumb-cont {
  531. background-color: #fff;
  532. color: #FFF;
  533. bottom: 100%;
  534. height: 83px;
  535. left: 0;
  536. margin-bottom: 20px;
  537. margin-left: -60px;
  538. opacity: 0;
  539. padding: 5px;
  540. position: absolute;
  541. width: 120px;
  542. border-radius: 3px;
  543. -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  544. -moz-transition: opacity 0.15s ease 0s, -moz-transform 0.15s ease 0s;
  545. -o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
  546. transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  547. -webkit-transform: translate3d(0, 5px, 0);
  548. transform: translate3d(0, 5px, 0);
  549. }
  550. .lg-outer .lg-pager-thumb-cont img {
  551. width: 100%;
  552. height: 100%;
  553. }
  554. .lg-outer .lg-pager {
  555. background-color: rgba(255, 255, 255, 0.5);
  556. border-radius: 50%;
  557. box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  558. display: block;
  559. height: 12px;
  560. -webkit-transition: box-shadow 0.3s ease 0s;
  561. -o-transition: box-shadow 0.3s ease 0s;
  562. transition: box-shadow 0.3s ease 0s;
  563. width: 12px;
  564. }
  565. .lg-outer .lg-pager:hover, .lg-outer .lg-pager:focus {
  566. box-shadow: 0 0 0 8px white inset;
  567. }
  568. .lg-outer .lg-caret {
  569. border-left: 10px solid transparent;
  570. border-right: 10px solid transparent;
  571. border-top: 10px dashed;
  572. bottom: -10px;
  573. display: inline-block;
  574. height: 0;
  575. left: 50%;
  576. margin-left: -5px;
  577. position: absolute;
  578. vertical-align: middle;
  579. width: 0;
  580. }
  581. .lg-fullscreen:after {
  582. content: "\e20c";
  583. }
  584. .lg-fullscreen-on .lg-fullscreen:after {
  585. content: "\e20d";
  586. }
  587. .group {
  588. *zoom: 1;
  589. }
  590. .group:before, .group:after {
  591. display: table;
  592. content: "";
  593. line-height: 0;
  594. }
  595. .group:after {
  596. clear: both;
  597. }
  598. .lg-outer {
  599. width: 100%;
  600. height: 100%;
  601. position: fixed;
  602. top: 0;
  603. left: 0;
  604. z-index: 1050;
  605. opacity: 0;
  606. -webkit-transition: opacity 0.15s ease 0s;
  607. -o-transition: opacity 0.15s ease 0s;
  608. transition: opacity 0.15s ease 0s;
  609. }
  610. .lg-outer * {
  611. -webkit-box-sizing: border-box;
  612. -moz-box-sizing: border-box;
  613. box-sizing: border-box;
  614. }
  615. .lg-outer.lg-visible {
  616. opacity: 1;
  617. }
  618. .lg-outer.lg-css3 .lg-item.lg-prev-slide, .lg-outer.lg-css3 .lg-item.lg-next-slide, .lg-outer.lg-css3 .lg-item.lg-current {
  619. -webkit-transition-duration: inherit !important;
  620. transition-duration: inherit !important;
  621. -webkit-transition-timing-function: inherit !important;
  622. transition-timing-function: inherit !important;
  623. }
  624. .lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  625. -webkit-transition-duration: 0s !important;
  626. transition-duration: 0s !important;
  627. opacity: 1;
  628. }
  629. .lg-outer.lg-grab img.lg-object {
  630. cursor: -webkit-grab;
  631. cursor: -moz-grab;
  632. cursor: -o-grab;
  633. cursor: -ms-grab;
  634. cursor: grab;
  635. }
  636. .lg-outer.lg-grabbing img.lg-object {
  637. cursor: move;
  638. cursor: -webkit-grabbing;
  639. cursor: -moz-grabbing;
  640. cursor: -o-grabbing;
  641. cursor: -ms-grabbing;
  642. cursor: grabbing;
  643. }
  644. .lg-outer .lg {
  645. height: 100%;
  646. width: 100%;
  647. position: relative;
  648. overflow: hidden;
  649. margin-left: auto;
  650. margin-right: auto;
  651. max-width: 100%;
  652. max-height: 100%;
  653. }
  654. .lg-outer .lg-inner {
  655. width: 100%;
  656. height: 100%;
  657. position: absolute;
  658. left: 0;
  659. top: 0;
  660. white-space: nowrap;
  661. }
  662. .lg-outer .lg-item {
  663. /*background: url(../images/loading.gif) no-repeat scroll center center transparent;*/
  664. }
  665. .lg-outer .lg-item, .lg-outer .lg-img-wrap {
  666. display: inline-block;
  667. text-align: center;
  668. position: absolute;
  669. width: 100%;
  670. height: 100%;
  671. }
  672. .lg-outer .lg-item:before, .lg-outer .lg-img-wrap:before {
  673. content: "";
  674. display: inline-block;
  675. height: 45%;
  676. width: 1px;
  677. margin-right: -5px;
  678. }
  679. .lg-outer .lg-img-wrap {
  680. top: 0;
  681. bottom: 0;
  682. left: 0;
  683. right: 0;
  684. padding: 0 5px;
  685. }
  686. .lg-outer .lg-item.lg-complete {
  687. background-image: none;
  688. }
  689. .lg-outer .lg-item.lg-current {
  690. z-index: 1060;
  691. }
  692. .lg-outer .lg-image {
  693. display: inline-block;
  694. vertical-align: middle;
  695. min-width: 80%;
  696. min-height: 10%;
  697. max-height:60%;
  698. }
  699. .lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
  700. opacity: 0;
  701. -webkit-transition: opacity 0.15s ease 0s;
  702. -o-transition: opacity 0.15s ease 0s;
  703. transition: opacity 0.15s ease 0s;
  704. }
  705. .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object, .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
  706. opacity: 1;
  707. }
  708. .lg-outer .lg-empty-html {
  709. display: none;
  710. }
  711. .lg-backdrop {
  712. position: fixed;
  713. top: 0;
  714. left: 0;
  715. right: 0;
  716. bottom: 0;
  717. z-index: 1040;
  718. background-color: #000;
  719. opacity: 0;
  720. -webkit-transition: opacity 0.15s ease 0s;
  721. -o-transition: opacity 0.15s ease 0s;
  722. transition: opacity 0.15s ease 0s;
  723. }
  724. .lg-backdrop.in {
  725. opacity: 1;
  726. }
  727. .lg-css3.lg-no-trans .lg-prev-slide, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-current {
  728. -webkit-transition: none 0s ease 0s !important;
  729. -moz-transition: none 0s ease 0s !important;
  730. -o-transition: none 0s ease 0s !important;
  731. transition: none 0s ease 0s !important;
  732. }
  733. .lg-css3.lg-use-css3 .lg-item {
  734. will-change: transform, opacity;
  735. }
  736. .lg-css3.lg-use-left .lg-item {
  737. will-change: left, opacity;
  738. }
  739. .lg-css3.lg-fade .lg-item {
  740. opacity: 0;
  741. }
  742. .lg-css3.lg-fade .lg-item.lg-current {
  743. opacity: 1;
  744. }
  745. .lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
  746. -webkit-transition: opacity 0.1s ease 0s;
  747. -moz-transition: opacity 0.1s ease 0s;
  748. -o-transition: opacity 0.1s ease 0s;
  749. transition: opacity 0.1s ease 0s;
  750. }
  751. .lg-css3.lg-slide.lg-use-css3 .lg-item {
  752. opacity: 0;
  753. }
  754. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  755. -webkit-transform: translate3d(-100%, 0, 0);
  756. transform: translate3d(-100%, 0, 0);
  757. }
  758. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  759. -webkit-transform: translate3d(100%, 0, 0);
  760. transform: translate3d(100%, 0, 0);
  761. }
  762. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  763. -webkit-transform: translate3d(0, 0, 0);
  764. transform: translate3d(0, 0, 0);
  765. opacity: 1;
  766. }
  767. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  768. -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  769. -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  770. -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  771. transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  772. }
  773. .lg-css3.lg-slide.lg-use-left .lg-item {
  774. opacity: 0;
  775. position: absolute;
  776. left: 0;
  777. }
  778. .lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  779. left: -100%;
  780. }
  781. .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
  782. left: 100%;
  783. }
  784. .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  785. left: 0;
  786. opacity: 1;
  787. }
  788. .lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  789. -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  790. -moz-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  791. -o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  792. transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  793. }
  794. /*# sourceMappingURL=lightgallery.css.map */