lightgallery.scss 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978
  1. /*! lightgallery - v1.4.0 - 2017-06-04
  2. * http://sachinchoolur.github.io/lightGallery/
  3. * Copyright (c) 2017 Sachin N; Licensed GPLv3 */
  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. border: none;
  36. outline: none;
  37. }
  38. .lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
  39. pointer-events: none;
  40. opacity: 0.5;
  41. }
  42. .lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
  43. color: #FFF;
  44. }
  45. .lg-actions .lg-next {
  46. right: 20px;
  47. }
  48. .lg-actions .lg-next:before {
  49. content: "\e095";
  50. }
  51. .lg-actions .lg-prev {
  52. left: 20px;
  53. }
  54. .lg-actions .lg-prev:after {
  55. content: "\e094";
  56. }
  57. @-webkit-keyframes lg-right-end {
  58. 0% {
  59. left: 0;
  60. }
  61. 50% {
  62. left: -30px;
  63. }
  64. 100% {
  65. left: 0;
  66. }
  67. }
  68. @-moz-keyframes lg-right-end {
  69. 0% {
  70. left: 0;
  71. }
  72. 50% {
  73. left: -30px;
  74. }
  75. 100% {
  76. left: 0;
  77. }
  78. }
  79. @-ms-keyframes lg-right-end {
  80. 0% {
  81. left: 0;
  82. }
  83. 50% {
  84. left: -30px;
  85. }
  86. 100% {
  87. left: 0;
  88. }
  89. }
  90. @keyframes lg-right-end {
  91. 0% {
  92. left: 0;
  93. }
  94. 50% {
  95. left: -30px;
  96. }
  97. 100% {
  98. left: 0;
  99. }
  100. }
  101. @-webkit-keyframes lg-left-end {
  102. 0% {
  103. left: 0;
  104. }
  105. 50% {
  106. left: 30px;
  107. }
  108. 100% {
  109. left: 0;
  110. }
  111. }
  112. @-moz-keyframes lg-left-end {
  113. 0% {
  114. left: 0;
  115. }
  116. 50% {
  117. left: 30px;
  118. }
  119. 100% {
  120. left: 0;
  121. }
  122. }
  123. @-ms-keyframes lg-left-end {
  124. 0% {
  125. left: 0;
  126. }
  127. 50% {
  128. left: 30px;
  129. }
  130. 100% {
  131. left: 0;
  132. }
  133. }
  134. @keyframes lg-left-end {
  135. 0% {
  136. left: 0;
  137. }
  138. 50% {
  139. left: 30px;
  140. }
  141. 100% {
  142. left: 0;
  143. }
  144. }
  145. .lg-outer.lg-right-end .lg-object {
  146. -webkit-animation: lg-right-end 0.3s;
  147. -o-animation: lg-right-end 0.3s;
  148. animation: lg-right-end 0.3s;
  149. position: relative;
  150. }
  151. .lg-outer.lg-left-end .lg-object {
  152. -webkit-animation: lg-left-end 0.3s;
  153. -o-animation: lg-left-end 0.3s;
  154. animation: lg-left-end 0.3s;
  155. position: relative;
  156. }
  157. .lg-toolbar {
  158. z-index: 1082;
  159. left: 0;
  160. position: absolute;
  161. top: 0;
  162. width: 100%;
  163. background-color: rgba(0, 0, 0, 0.45);
  164. }
  165. .lg-toolbar .lg-icon {
  166. color: #999;
  167. cursor: pointer;
  168. float: right;
  169. font-size: 24px;
  170. height: 47px;
  171. line-height: 27px;
  172. padding: 10px 0;
  173. text-align: center;
  174. width: 50px;
  175. text-decoration: none !important;
  176. outline: medium none;
  177. -webkit-transition: color 0.2s linear;
  178. -o-transition: color 0.2s linear;
  179. transition: color 0.2s linear;
  180. }
  181. .lg-toolbar .lg-icon:hover {
  182. color: #FFF;
  183. }
  184. .lg-toolbar .lg-close:after {
  185. content: "\e070";
  186. }
  187. .lg-toolbar .lg-download:after {
  188. content: "\e0f2";
  189. }
  190. .lg-sub-html {
  191. background-color: rgba(0, 0, 0, 0.45);
  192. bottom: 0;
  193. color: #EEE;
  194. font-size: 16px;
  195. left: 0;
  196. padding: 10px 40px;
  197. position: fixed;
  198. right: 0;
  199. text-align: center;
  200. z-index: 1080;
  201. }
  202. .lg-sub-html h4 {
  203. margin: 0;
  204. font-size: 13px;
  205. font-weight: bold;
  206. }
  207. .lg-sub-html p {
  208. font-size: 12px;
  209. margin: 5px 0 0;
  210. }
  211. #lg-counter {
  212. color: #999;
  213. display: inline-block;
  214. font-size: 16px;
  215. padding-left: 20px;
  216. padding-top: 12px;
  217. vertical-align: middle;
  218. }
  219. .lg-toolbar, .lg-prev, .lg-next {
  220. opacity: 1;
  221. -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, color 0.2s linear;
  222. -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, color 0.2s linear;
  223. -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, color 0.2s linear;
  224. transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  225. }
  226. .lg-hide-items .lg-prev {
  227. opacity: 0;
  228. -webkit-transform: translate3d(-10px, 0, 0);
  229. transform: translate3d(-10px, 0, 0);
  230. }
  231. .lg-hide-items .lg-next {
  232. opacity: 0;
  233. -webkit-transform: translate3d(10px, 0, 0);
  234. transform: translate3d(10px, 0, 0);
  235. }
  236. .lg-hide-items .lg-toolbar {
  237. opacity: 0;
  238. -webkit-transform: translate3d(0, -10px, 0);
  239. transform: translate3d(0, -10px, 0);
  240. }
  241. body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  242. -webkit-transform: scale3d(0.5, 0.5, 0.5);
  243. transform: scale3d(0.5, 0.5, 0.5);
  244. opacity: 0;
  245. -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  246. -moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  247. -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  248. transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  249. -webkit-transform-origin: 50% 50%;
  250. -moz-transform-origin: 50% 50%;
  251. -ms-transform-origin: 50% 50%;
  252. transform-origin: 50% 50%;
  253. }
  254. body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  255. -webkit-transform: scale3d(1, 1, 1);
  256. transform: scale3d(1, 1, 1);
  257. opacity: 1;
  258. }
  259. .lg-outer .lg-thumb-outer {
  260. background-color: #0D0A0A;
  261. bottom: 0;
  262. position: absolute;
  263. width: 100%;
  264. z-index: 1080;
  265. max-height: 350px;
  266. -webkit-transform: translate3d(0, 100%, 0);
  267. transform: translate3d(0, 100%, 0);
  268. -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  269. -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  270. -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  271. transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  272. }
  273. .lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  274. cursor: -webkit-grab;
  275. cursor: -moz-grab;
  276. cursor: -o-grab;
  277. cursor: -ms-grab;
  278. cursor: grab;
  279. }
  280. .lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  281. cursor: move;
  282. cursor: -webkit-grabbing;
  283. cursor: -moz-grabbing;
  284. cursor: -o-grabbing;
  285. cursor: -ms-grabbing;
  286. cursor: grabbing;
  287. }
  288. .lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  289. -webkit-transition-duration: 0s !important;
  290. transition-duration: 0s !important;
  291. }
  292. .lg-outer.lg-thumb-open .lg-thumb-outer {
  293. -webkit-transform: translate3d(0, 0%, 0);
  294. transform: translate3d(0, 0%, 0);
  295. }
  296. .lg-outer .lg-thumb {
  297. padding: 10px 0;
  298. height: 100%;
  299. margin-bottom: -5px;
  300. }
  301. .lg-outer .lg-thumb-item {
  302. border-radius: 5px;
  303. cursor: pointer;
  304. float: left;
  305. overflow: hidden;
  306. height: 100%;
  307. border: 2px solid #FFF;
  308. border-radius: 4px;
  309. margin-bottom: 5px;
  310. }
  311. @media (min-width: 1025px) {
  312. .lg-outer .lg-thumb-item {
  313. -webkit-transition: border-color 0.25s ease;
  314. -o-transition: border-color 0.25s ease;
  315. transition: border-color 0.25s ease;
  316. }
  317. }
  318. .lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  319. border-color: #a90707;
  320. }
  321. .lg-outer .lg-thumb-item img {
  322. width: 100%;
  323. height: 100%;
  324. object-fit: cover;
  325. }
  326. .lg-outer.lg-has-thumb .lg-item {
  327. padding-bottom: 120px;
  328. }
  329. .lg-outer.lg-can-toggle .lg-item {
  330. padding-bottom: 0;
  331. }
  332. .lg-outer.lg-pull-caption-up .lg-sub-html {
  333. -webkit-transition: bottom 0.25s ease;
  334. -o-transition: bottom 0.25s ease;
  335. transition: bottom 0.25s ease;
  336. }
  337. .lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  338. bottom: 100px;
  339. }
  340. .lg-outer .lg-toogle-thumb {
  341. background-color: #0D0A0A;
  342. border-radius: 2px 2px 0 0;
  343. color: #999;
  344. cursor: pointer;
  345. font-size: 24px;
  346. height: 39px;
  347. line-height: 27px;
  348. padding: 5px 0;
  349. position: absolute;
  350. right: 20px;
  351. text-align: center;
  352. top: -39px;
  353. width: 50px;
  354. }
  355. .lg-outer .lg-toogle-thumb:after {
  356. content: "\e1ff";
  357. }
  358. .lg-outer .lg-toogle-thumb:hover {
  359. color: #FFF;
  360. }
  361. .lg-outer .lg-video-cont {
  362. display: inline-block;
  363. vertical-align: middle;
  364. max-width: 1140px;
  365. max-height: 100%;
  366. width: 100%;
  367. padding: 0 5px;
  368. }
  369. .lg-outer .lg-video {
  370. width: 100%;
  371. height: 0;
  372. padding-bottom: 56.25%;
  373. overflow: hidden;
  374. position: relative;
  375. }
  376. .lg-outer .lg-video .lg-object {
  377. display: inline-block;
  378. position: absolute;
  379. top: 0;
  380. left: 0;
  381. width: 100% !important;
  382. height: 100% !important;
  383. }
  384. .lg-outer .lg-video .lg-video-play {
  385. width: 84px;
  386. height: 59px;
  387. position: absolute;
  388. left: 50%;
  389. top: 50%;
  390. margin-left: -42px;
  391. margin-top: -30px;
  392. z-index: 1080;
  393. cursor: pointer;
  394. }
  395. .lg-outer .lg-has-vimeo .lg-video-play {
  396. background: url("../img/vimeo-play.png") no-repeat scroll 0 0 transparent;
  397. }
  398. .lg-outer .lg-has-vimeo:hover .lg-video-play {
  399. background: url("../img/vimeo-play.png") no-repeat scroll 0 -58px transparent;
  400. }
  401. .lg-outer .lg-has-html5 .lg-video-play {
  402. background: transparent url("../img/video-play.png") no-repeat scroll 0 0;
  403. height: 64px;
  404. margin-left: -32px;
  405. margin-top: -32px;
  406. width: 64px;
  407. opacity: 0.8;
  408. }
  409. .lg-outer .lg-has-html5:hover .lg-video-play {
  410. opacity: 1;
  411. }
  412. .lg-outer .lg-has-youtube .lg-video-play {
  413. background: url("../img/youtube-play.png") no-repeat scroll 0 0 transparent;
  414. }
  415. .lg-outer .lg-has-youtube:hover .lg-video-play {
  416. background: url("../img/youtube-play.png") no-repeat scroll 0 -60px transparent;
  417. }
  418. .lg-outer .lg-video-object {
  419. width: 100% !important;
  420. height: 100% !important;
  421. position: absolute;
  422. top: 0;
  423. left: 0;
  424. }
  425. .lg-outer .lg-has-video .lg-video-object {
  426. visibility: hidden;
  427. }
  428. .lg-outer .lg-has-video.lg-video-playing .lg-object, .lg-outer .lg-has-video.lg-video-playing .lg-video-play {
  429. display: none;
  430. }
  431. .lg-outer .lg-has-video.lg-video-playing .lg-video-object {
  432. visibility: visible;
  433. }
  434. .lg-progress-bar {
  435. background-color: #333;
  436. height: 5px;
  437. left: 0;
  438. position: absolute;
  439. top: 0;
  440. width: 100%;
  441. z-index: 1083;
  442. opacity: 0;
  443. -webkit-transition: opacity 0.08s ease 0s;
  444. -moz-transition: opacity 0.08s ease 0s;
  445. -o-transition: opacity 0.08s ease 0s;
  446. transition: opacity 0.08s ease 0s;
  447. }
  448. .lg-progress-bar .lg-progress {
  449. background-color: #a90707;
  450. height: 5px;
  451. width: 0;
  452. }
  453. .lg-progress-bar.lg-start .lg-progress {
  454. width: 100%;
  455. }
  456. .lg-show-autoplay .lg-progress-bar {
  457. opacity: 1;
  458. }
  459. .lg-autoplay-button:after {
  460. content: "\e01d";
  461. }
  462. .lg-show-autoplay .lg-autoplay-button:after {
  463. content: "\e01a";
  464. }
  465. .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 {
  466. -webkit-transition-duration: 0s;
  467. transition-duration: 0s;
  468. }
  469. .lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  470. -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  471. -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  472. -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  473. transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  474. }
  475. .lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  476. -webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  477. -moz-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  478. -o-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  479. transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  480. }
  481. .lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  482. -webkit-transform: translate3d(0, 0, 0);
  483. transform: translate3d(0, 0, 0);
  484. -webkit-backface-visibility: hidden;
  485. -moz-backface-visibility: hidden;
  486. backface-visibility: hidden;
  487. }
  488. .lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  489. -webkit-transform: scale3d(1, 1, 1);
  490. transform: scale3d(1, 1, 1);
  491. -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  492. -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  493. -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  494. transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  495. -webkit-transform-origin: 0 0;
  496. -moz-transform-origin: 0 0;
  497. -ms-transform-origin: 0 0;
  498. transform-origin: 0 0;
  499. -webkit-backface-visibility: hidden;
  500. -moz-backface-visibility: hidden;
  501. backface-visibility: hidden;
  502. }
  503. #lg-zoom-in:after {
  504. content: "\e311";
  505. }
  506. #lg-actual-size {
  507. font-size: 20px;
  508. }
  509. #lg-actual-size:after {
  510. content: "\e033";
  511. }
  512. #lg-zoom-out {
  513. opacity: 0.5;
  514. pointer-events: none;
  515. }
  516. #lg-zoom-out:after {
  517. content: "\e312";
  518. }
  519. .lg-zoomed #lg-zoom-out {
  520. opacity: 1;
  521. pointer-events: auto;
  522. }
  523. .lg-outer .lg-pager-outer {
  524. bottom: 60px;
  525. left: 0;
  526. position: absolute;
  527. right: 0;
  528. text-align: center;
  529. z-index: 1080;
  530. height: 10px;
  531. }
  532. .lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  533. overflow: visible;
  534. }
  535. .lg-outer .lg-pager-cont {
  536. cursor: pointer;
  537. display: inline-block;
  538. overflow: hidden;
  539. position: relative;
  540. vertical-align: top;
  541. margin: 0 5px;
  542. }
  543. .lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  544. opacity: 1;
  545. -webkit-transform: translate3d(0, 0, 0);
  546. transform: translate3d(0, 0, 0);
  547. }
  548. .lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  549. box-shadow: 0 0 0 2px white inset;
  550. }
  551. .lg-outer .lg-pager-thumb-cont {
  552. background-color: #fff;
  553. color: #FFF;
  554. bottom: 100%;
  555. height: 83px;
  556. left: 0;
  557. margin-bottom: 20px;
  558. margin-left: -60px;
  559. opacity: 0;
  560. padding: 5px;
  561. position: absolute;
  562. width: 120px;
  563. border-radius: 3px;
  564. -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  565. -moz-transition: opacity 0.15s ease 0s, -moz-transform 0.15s ease 0s;
  566. -o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
  567. transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  568. -webkit-transform: translate3d(0, 5px, 0);
  569. transform: translate3d(0, 5px, 0);
  570. }
  571. .lg-outer .lg-pager-thumb-cont img {
  572. width: 100%;
  573. height: 100%;
  574. }
  575. .lg-outer .lg-pager {
  576. background-color: rgba(255, 255, 255, 0.5);
  577. border-radius: 50%;
  578. box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  579. display: block;
  580. height: 12px;
  581. -webkit-transition: box-shadow 0.3s ease 0s;
  582. -o-transition: box-shadow 0.3s ease 0s;
  583. transition: box-shadow 0.3s ease 0s;
  584. width: 12px;
  585. }
  586. .lg-outer .lg-pager:hover, .lg-outer .lg-pager:focus {
  587. box-shadow: 0 0 0 8px white inset;
  588. }
  589. .lg-outer .lg-caret {
  590. border-left: 10px solid transparent;
  591. border-right: 10px solid transparent;
  592. border-top: 10px dashed;
  593. bottom: -10px;
  594. display: inline-block;
  595. height: 0;
  596. left: 50%;
  597. margin-left: -5px;
  598. position: absolute;
  599. vertical-align: middle;
  600. width: 0;
  601. }
  602. .lg-fullscreen:after {
  603. content: "\e20c";
  604. }
  605. .lg-fullscreen-on .lg-fullscreen:after {
  606. content: "\e20d";
  607. }
  608. .lg-outer #lg-dropdown-overlay {
  609. background-color: rgba(0, 0, 0, 0.25);
  610. bottom: 0;
  611. cursor: default;
  612. left: 0;
  613. position: fixed;
  614. right: 0;
  615. top: 0;
  616. z-index: 1081;
  617. opacity: 0;
  618. visibility: hidden;
  619. -webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  620. -o-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  621. transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  622. }
  623. .lg-outer.lg-dropdown-active .lg-dropdown, .lg-outer.lg-dropdown-active #lg-dropdown-overlay {
  624. -webkit-transition-delay: 0s;
  625. transition-delay: 0s;
  626. -moz-transform: translate3d(0, 0px, 0);
  627. -o-transform: translate3d(0, 0px, 0);
  628. -ms-transform: translate3d(0, 0px, 0);
  629. -webkit-transform: translate3d(0, 0px, 0);
  630. transform: translate3d(0, 0px, 0);
  631. opacity: 1;
  632. visibility: visible;
  633. }
  634. .lg-outer.lg-dropdown-active #lg-share {
  635. color: #FFF;
  636. }
  637. .lg-outer .lg-dropdown {
  638. background-color: #fff;
  639. border-radius: 2px;
  640. font-size: 14px;
  641. list-style-type: none;
  642. margin: 0;
  643. padding: 10px 0;
  644. position: absolute;
  645. right: 0;
  646. text-align: left;
  647. top: 50px;
  648. opacity: 0;
  649. visibility: hidden;
  650. -moz-transform: translate3d(0, 5px, 0);
  651. -o-transform: translate3d(0, 5px, 0);
  652. -ms-transform: translate3d(0, 5px, 0);
  653. -webkit-transform: translate3d(0, 5px, 0);
  654. transform: translate3d(0, 5px, 0);
  655. -webkit-transition: -webkit-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  656. -moz-transition: -moz-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  657. -o-transition: -o-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  658. transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  659. }
  660. .lg-outer .lg-dropdown:after {
  661. content: "";
  662. display: block;
  663. height: 0;
  664. width: 0;
  665. position: absolute;
  666. border: 8px solid transparent;
  667. border-bottom-color: #FFF;
  668. right: 16px;
  669. top: -16px;
  670. }
  671. .lg-outer .lg-dropdown > li:last-child {
  672. margin-bottom: 0px;
  673. }
  674. .lg-outer .lg-dropdown > li:hover a, .lg-outer .lg-dropdown > li:hover .lg-icon {
  675. color: #333;
  676. }
  677. .lg-outer .lg-dropdown a {
  678. color: #333;
  679. display: block;
  680. white-space: pre;
  681. padding: 4px 12px;
  682. font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
  683. font-size: 12px;
  684. }
  685. .lg-outer .lg-dropdown a:hover {
  686. background-color: rgba(0, 0, 0, 0.07);
  687. }
  688. .lg-outer .lg-dropdown .lg-dropdown-text {
  689. display: inline-block;
  690. line-height: 1;
  691. margin-top: -3px;
  692. vertical-align: middle;
  693. }
  694. .lg-outer .lg-dropdown .lg-icon {
  695. color: #333;
  696. display: inline-block;
  697. float: none;
  698. font-size: 20px;
  699. height: auto;
  700. line-height: 1;
  701. margin-right: 8px;
  702. padding: 0;
  703. vertical-align: middle;
  704. width: auto;
  705. }
  706. .lg-outer #lg-share {
  707. position: relative;
  708. }
  709. .lg-outer #lg-share:after {
  710. content: "\e80d";
  711. }
  712. .lg-outer #lg-share-facebook .lg-icon {
  713. color: #3b5998;
  714. }
  715. .lg-outer #lg-share-facebook .lg-icon:after {
  716. content: "\e901";
  717. }
  718. .lg-outer #lg-share-twitter .lg-icon {
  719. color: #00aced;
  720. }
  721. .lg-outer #lg-share-twitter .lg-icon:after {
  722. content: "\e904";
  723. }
  724. .lg-outer #lg-share-googleplus .lg-icon {
  725. color: #dd4b39;
  726. }
  727. .lg-outer #lg-share-googleplus .lg-icon:after {
  728. content: "\e902";
  729. }
  730. .lg-outer #lg-share-pinterest .lg-icon {
  731. color: #cb2027;
  732. }
  733. .lg-outer #lg-share-pinterest .lg-icon:after {
  734. content: "\e903";
  735. }
  736. .lg-group:after {
  737. content: "";
  738. display: table;
  739. clear: both;
  740. }
  741. .lg-outer {
  742. width: 100%;
  743. height: 100%;
  744. position: fixed;
  745. top: 0;
  746. left: 0;
  747. z-index: 1050;
  748. text-align: left;
  749. opacity: 0;
  750. -webkit-transition: opacity 0.15s ease 0s;
  751. -o-transition: opacity 0.15s ease 0s;
  752. transition: opacity 0.15s ease 0s;
  753. }
  754. .lg-outer * {
  755. -webkit-box-sizing: border-box;
  756. -moz-box-sizing: border-box;
  757. box-sizing: border-box;
  758. }
  759. .lg-outer.lg-visible {
  760. opacity: 1;
  761. }
  762. .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 {
  763. -webkit-transition-duration: inherit !important;
  764. transition-duration: inherit !important;
  765. -webkit-transition-timing-function: inherit !important;
  766. transition-timing-function: inherit !important;
  767. }
  768. .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 {
  769. -webkit-transition-duration: 0s !important;
  770. transition-duration: 0s !important;
  771. opacity: 1;
  772. }
  773. .lg-outer.lg-grab img.lg-object {
  774. cursor: -webkit-grab;
  775. cursor: -moz-grab;
  776. cursor: -o-grab;
  777. cursor: -ms-grab;
  778. cursor: grab;
  779. }
  780. .lg-outer.lg-grabbing img.lg-object {
  781. cursor: move;
  782. cursor: -webkit-grabbing;
  783. cursor: -moz-grabbing;
  784. cursor: -o-grabbing;
  785. cursor: -ms-grabbing;
  786. cursor: grabbing;
  787. }
  788. .lg-outer .lg {
  789. height: 100%;
  790. width: 100%;
  791. position: relative;
  792. overflow: hidden;
  793. margin-left: auto;
  794. margin-right: auto;
  795. max-width: 100%;
  796. max-height: 100%;
  797. }
  798. .lg-outer .lg-inner {
  799. width: 100%;
  800. height: 100%;
  801. position: absolute;
  802. left: 0;
  803. top: 0;
  804. white-space: nowrap;
  805. }
  806. .lg-outer .lg-item {
  807. background: url("../img/loading.gif") no-repeat scroll center center transparent;
  808. display: none !important;
  809. }
  810. .lg-outer.lg-css3 .lg-prev-slide, .lg-outer.lg-css3 .lg-current, .lg-outer.lg-css3 .lg-next-slide {
  811. display: inline-block !important;
  812. }
  813. .lg-outer.lg-css .lg-current {
  814. display: inline-block !important;
  815. }
  816. .lg-outer .lg-item, .lg-outer .lg-img-wrap {
  817. display: inline-block;
  818. text-align: center;
  819. position: absolute;
  820. width: 100%;
  821. height: 100%;
  822. }
  823. .lg-outer .lg-item:before, .lg-outer .lg-img-wrap:before {
  824. content: "";
  825. display: inline-block;
  826. height: 50%;
  827. width: 1px;
  828. margin-right: -1px;
  829. }
  830. .lg-outer .lg-img-wrap {
  831. position: absolute;
  832. padding: 0 5px;
  833. left: 0;
  834. right: 0;
  835. top: 0;
  836. bottom: 0;
  837. }
  838. .lg-outer .lg-item.lg-complete {
  839. background-image: none;
  840. }
  841. .lg-outer .lg-item.lg-current {
  842. z-index: 1060;
  843. }
  844. .lg-outer .lg-image {
  845. display: inline-block;
  846. vertical-align: middle;
  847. max-width: 100%;
  848. max-height: 100%;
  849. width: auto !important;
  850. height: auto !important;
  851. }
  852. .lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
  853. opacity: 0;
  854. -webkit-transition: opacity 0.15s ease 0s;
  855. -o-transition: opacity 0.15s ease 0s;
  856. transition: opacity 0.15s ease 0s;
  857. }
  858. .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 {
  859. opacity: 1;
  860. }
  861. .lg-outer .lg-empty-html {
  862. display: none;
  863. }
  864. .lg-outer.lg-hide-download #lg-download {
  865. display: none;
  866. }
  867. .lg-backdrop {
  868. position: fixed;
  869. top: 0;
  870. left: 0;
  871. right: 0;
  872. bottom: 0;
  873. z-index: 1040;
  874. background-color: #000;
  875. opacity: 0;
  876. -webkit-transition: opacity 0.15s ease 0s;
  877. -o-transition: opacity 0.15s ease 0s;
  878. transition: opacity 0.15s ease 0s;
  879. }
  880. .lg-backdrop.in {
  881. opacity: 1;
  882. }
  883. .lg-css3.lg-no-trans .lg-prev-slide, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-current {
  884. -webkit-transition: none 0s ease 0s !important;
  885. -moz-transition: none 0s ease 0s !important;
  886. -o-transition: none 0s ease 0s !important;
  887. transition: none 0s ease 0s !important;
  888. }
  889. .lg-css3.lg-use-css3 .lg-item {
  890. -webkit-backface-visibility: hidden;
  891. -moz-backface-visibility: hidden;
  892. backface-visibility: hidden;
  893. }
  894. .lg-css3.lg-use-left .lg-item {
  895. -webkit-backface-visibility: hidden;
  896. -moz-backface-visibility: hidden;
  897. backface-visibility: hidden;
  898. }
  899. .lg-css3.lg-fade .lg-item {
  900. opacity: 0;
  901. }
  902. .lg-css3.lg-fade .lg-item.lg-current {
  903. opacity: 1;
  904. }
  905. .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 {
  906. -webkit-transition: opacity 0.1s ease 0s;
  907. -moz-transition: opacity 0.1s ease 0s;
  908. -o-transition: opacity 0.1s ease 0s;
  909. transition: opacity 0.1s ease 0s;
  910. }
  911. .lg-css3.lg-slide.lg-use-css3 .lg-item {
  912. opacity: 0;
  913. }
  914. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  915. -webkit-transform: translate3d(-100%, 0, 0);
  916. transform: translate3d(-100%, 0, 0);
  917. }
  918. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  919. -webkit-transform: translate3d(100%, 0, 0);
  920. transform: translate3d(100%, 0, 0);
  921. }
  922. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  923. -webkit-transform: translate3d(0, 0, 0);
  924. transform: translate3d(0, 0, 0);
  925. opacity: 1;
  926. }
  927. .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 {
  928. -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  929. -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  930. -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  931. transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  932. }
  933. .lg-css3.lg-slide.lg-use-left .lg-item {
  934. opacity: 0;
  935. position: absolute;
  936. left: 0;
  937. }
  938. .lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  939. left: -100%;
  940. }
  941. .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
  942. left: 100%;
  943. }
  944. .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  945. left: 0;
  946. opacity: 1;
  947. }
  948. .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 {
  949. -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  950. -moz-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  951. -o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  952. transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  953. }
  954. /*# sourceMappingURL=lightgallery.css.map */