layerslider.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894
  1. /*
  2. * Style settings of LayerSlider
  3. *
  4. * (c) 2011-2014 George Krupa, John Gera & Kreatura Media
  5. *
  6. * Plugin web: http://kreaturamedia.com/
  7. * Licenses: http://codecanyon.net/licenses/
  8. */
  9. /* Global settings */
  10. .ls-container {
  11. visibility: hidden;
  12. position: relative;
  13. }
  14. .ls-lt-container {
  15. position: absolute;
  16. }
  17. .ls-lt-container,
  18. .ls-lt-container * {
  19. text-align: left !important;
  20. direction: ltr !important;
  21. }
  22. .ls-container-fullscreen {
  23. margin: 0 auto !important;
  24. padding: 2% !important;
  25. background: black !important;
  26. border-radius: 0 !important;
  27. -moz-border-radius: 0 !important;
  28. -webkit-border-radius: 0 !important;
  29. border: none !important;
  30. }
  31. .ls-container-fullscreen .ls-thumbnail-wrapper,
  32. .ls-container-fullscreen .ls-fullscreen,
  33. .ls-container-fullscreen .ls-shadow {
  34. display: none !important;
  35. }
  36. .ls-overflow-hidden {
  37. overflow: hidden;
  38. }
  39. .ls-inner {
  40. position: relative;
  41. background-position: center center;
  42. z-index: 2;
  43. }
  44. .ls-loading-container {
  45. position: absolute !important;
  46. display: none;
  47. z-index: 3 !important;
  48. left: 50% !important;
  49. top: 50% !important;
  50. }
  51. .ls-loading-indicator {
  52. margin: 0 auto;
  53. }
  54. .ls-inner,
  55. .ls-slide {
  56. width: 100%;
  57. height: 100%;
  58. }
  59. .ls-slide,
  60. .ls-layer {
  61. position: absolute;
  62. display: none;
  63. background-position: center center;
  64. overflow: hidden;
  65. }
  66. .ls-active,
  67. .ls-animating {
  68. display: block !important;
  69. }
  70. .ls-slide > * {
  71. position: absolute;
  72. line-height: normal;
  73. margin: 0;
  74. left: 0;
  75. top: 0;
  76. }
  77. .ls-slide .ls-bg {
  78. left: 0px;
  79. top: 0px;
  80. transform: none !important;
  81. -o-transform: none !important;
  82. -ms-transform: none !important;
  83. -moz-transform: none !important;
  84. -webkit-transform: none !important;
  85. }
  86. .ls-yourlogo {
  87. position: absolute;
  88. z-index: 99;
  89. }
  90. /* Timers */
  91. .ls-bar-timer {
  92. position: absolute;
  93. width: 0;
  94. height: 2px;
  95. background: white;
  96. border-bottom: 2px solid #555;
  97. opacity: .55;
  98. filter: alpha(opacity=55);
  99. z-index: 4;
  100. top: 0;
  101. }
  102. .ls-circle-timer {
  103. width: 16px;
  104. height: 16px;
  105. position: absolute;
  106. right: 10px;
  107. top: 10px;
  108. z-index: 4;
  109. opacity: .65;
  110. filter: alpha(opacity=65);
  111. display: none;
  112. }
  113. .ls-ct-half {
  114. background: white;
  115. }
  116. .ls-ct-center {
  117. background: #444;
  118. }
  119. .ls-ct-left,
  120. .ls-ct-right {
  121. width: 50%;
  122. height: 100%;
  123. overflow: hidden;
  124. }
  125. .ls-ct-left,
  126. .ls-ct-right {
  127. float: left;
  128. position: relative;
  129. }
  130. .ls-ct-rotate {
  131. width: 200%;
  132. height: 100%;
  133. position: absolute;
  134. top: 0;
  135. }
  136. .ls-ct-left .ls-ct-rotate,
  137. .ls-ct-right .ls-ct-hider,
  138. .ls-ct-right .ls-ct-half {
  139. left: 0;
  140. }
  141. .ls-ct-right .ls-ct-rotate,
  142. .ls-ct-left .ls-ct-hider,
  143. .ls-ct-left .ls-ct-half {
  144. right: 0;
  145. }
  146. .ls-ct-hider,
  147. .ls-ct-half {
  148. position: absolute;
  149. top: 0;
  150. }
  151. .ls-ct-hider {
  152. width: 50%;
  153. height: 100%;
  154. overflow: hidden;
  155. }
  156. .ls-ct-half {
  157. width: 200%;
  158. height: 100%;
  159. }
  160. .ls-ct-center {
  161. width: 50%;
  162. height: 50%;
  163. left: 25%;
  164. top: 25%;
  165. position: absolute;
  166. }
  167. .ls-ct-half,
  168. .ls-ct-center {
  169. border-radius: 100px;
  170. -moz-border-radius: 100px;
  171. -webkit-border-radius: 100px;
  172. }
  173. /* Navigation */
  174. .ls-bottom-nav-wrapper {
  175. height: 0;
  176. }
  177. .ls-bottom-slidebuttons {
  178. text-align: left;
  179. }
  180. .ls-bottom-nav-wrapper,
  181. .ls-below-thumbnails {
  182. z-index: 2;
  183. height: 0;
  184. position: relative;
  185. text-align: center;
  186. margin: 0 auto;
  187. }
  188. .ls-below-thumbnails {
  189. display: none;
  190. z-index: 6;
  191. }
  192. .ls-bottom-nav-wrapper a,
  193. .ls-nav-prev,
  194. .ls-nav-next {
  195. outline: none;
  196. }
  197. * .ls-bottom-nav-wrapper *,
  198. * .ls-bottom-nav-wrapper span * {
  199. direction: ltr !important;
  200. }
  201. .ls-bottom-slidebuttons {
  202. position: relative;
  203. z-index: 1000;
  204. }
  205. .ls-bottom-slidebuttons,
  206. .ls-nav-start,
  207. .ls-nav-stop,
  208. .ls-nav-sides {
  209. position: relative;
  210. }
  211. .ls-nothumb {
  212. text-align: center !important;
  213. }
  214. .ls-link {
  215. position: absolute;
  216. width: 100% !important;
  217. height: 100% !important;
  218. left: 0 !important;
  219. top: 0 !important;
  220. background-image: url(blank.gif);
  221. }
  222. .ls-slide > a > * {
  223. background-image: url(blank.gif);
  224. }
  225. /* Embedded videos */
  226. .ls-vpcontainer {
  227. width: 100%;
  228. height: 100%;
  229. position: absolute;
  230. left: 0;
  231. top: 0;
  232. }
  233. .ls-videopreview {
  234. width : 100%;
  235. height : 100%;
  236. position : absolute;
  237. left : 0;
  238. top : 0;
  239. cursor : pointer;
  240. }
  241. .ls-playvideo {
  242. position: absolute;
  243. left: 50%;
  244. top: 50%;
  245. cursor: pointer;
  246. }
  247. /* Thumbnails */
  248. .ls-tn {
  249. display: none !important;
  250. }
  251. .ls-thumbnail-hover {
  252. display: none;
  253. position: absolute;
  254. left: 0;
  255. }
  256. .ls-thumbnail-hover-inner {
  257. width: 100%;
  258. height: 100%;
  259. position: absolute;
  260. left: 0;
  261. top: 0;
  262. display: none;
  263. }
  264. .ls-thumbnail-hover-bg {
  265. position: absolute;
  266. width: 100%;
  267. height: 100%;
  268. left: 0;
  269. top: 0;
  270. }
  271. .ls-thumbnail-hover-img {
  272. position: absolute;
  273. overflow: hidden;
  274. }
  275. .ls-thumbnail-hover img {
  276. max-width: none !important;
  277. position: absolute;
  278. display: inline-block;
  279. visibility: visible !important;
  280. left: 50%;
  281. top: 0;
  282. }
  283. .ls-thumbnail-hover span {
  284. left: 50%;
  285. top: 100%;
  286. width: 0;
  287. height: 0;
  288. display: block;
  289. position: absolute;
  290. border-left-color: transparent !important;
  291. border-right-color: transparent !important;
  292. border-bottom-color: transparent !important;
  293. }
  294. .ls-thumbnail-wrapper {
  295. position: relative;
  296. width: 100%;
  297. margin: 0 auto;
  298. z-index: 4;
  299. }
  300. .ls-thumbnail {
  301. position: relative;
  302. margin: 0 auto;
  303. }
  304. .ls-thumbnail-inner,
  305. .ls-thumbnail-slide-container {
  306. width: 100%;
  307. }
  308. .ls-thumbnail-slide-container {
  309. overflow: hidden !important;
  310. position: relative;
  311. }
  312. .ls-touchscroll {
  313. overflow-x: auto !important;
  314. }
  315. .ls-thumbnail-slide {
  316. text-align: center;
  317. white-space: nowrap;
  318. float: left;
  319. position: relative;
  320. }
  321. .ls-thumbnail-slide a {
  322. overflow: hidden;
  323. display: inline-block;
  324. width: 0;
  325. height: 0;
  326. position: relative;
  327. }
  328. .ls-thumbnail-slide img {
  329. max-width: none !important;
  330. max-height: 100% !important;
  331. height: 100%;
  332. visibility: visible !important;
  333. }
  334. .ls-shadow {
  335. display: none;
  336. position: absolute;
  337. z-index: 1;
  338. top: 100%;
  339. width: 100%;
  340. left: 0;
  341. overflow: hidden !important;
  342. visibility: hidden;
  343. }
  344. .ls-shadow img {
  345. width: 100% !important;
  346. height: auto !important;
  347. position: absolute !important;
  348. left: 0 !important;
  349. bottom: 0 !important;
  350. }
  351. .ls-bottom-nav-wrapper,
  352. .ls-thumbnail-wrapper,
  353. .ls-nav-prev,
  354. .ls-nav-next {
  355. visibility: hidden;
  356. }
  357. /* WP plugin fullwidth */
  358. .ls-wp-fullwidth-container {
  359. width: 100%;
  360. position: relative;
  361. }
  362. .ls-wp-fullwidth-helper {
  363. position: absolute;
  364. }
  365. /* 2D & 3D Layer Transitions */
  366. .ls-overflow-hidden {
  367. overflow: hidden;
  368. }
  369. .ls-lt-tile {
  370. position: relative;
  371. float: left;
  372. perspective: 1000px;
  373. -o-perspective: 1000px;
  374. -ms-perspective: 1000px;
  375. -moz-perspective: 1000px;
  376. -webkit-perspective: 1000px;
  377. }
  378. .ls-lt-tile img {
  379. visibility: visible;
  380. display: inline-block;
  381. }
  382. .ls-curtiles {
  383. overflow: hidden;
  384. }
  385. .ls-curtiles,
  386. .ls-nexttiles {
  387. position: absolute;
  388. width: 100%;
  389. height: 100%;
  390. left: 0;
  391. top: 0;
  392. }
  393. .ls-curtile, .ls-nexttile {
  394. overflow: hidden;
  395. position: absolute;
  396. width: 100% !important;
  397. height: 100% !important;
  398. backface-visibility: hidden;
  399. -o-backface-visibility: hidden;
  400. -ms-backface-visibility: hidden;
  401. -moz-backface-visibility: hidden;
  402. -webkit-backface-visibility: hidden;
  403. }
  404. .ls-curtile {
  405. left: 0;
  406. top: 0;
  407. }
  408. .ls-curtile img,
  409. .ls-nexttile img {
  410. position: absolute;
  411. filter: inherit;
  412. }
  413. .ls-3d-container {
  414. position: relative;
  415. overflow: visible !important;
  416. }
  417. .ls-3d-box {
  418. position: absolute;
  419. top: 50%;
  420. left: 50%;
  421. transform-style: preserve-3d;
  422. -o-transform-style: preserve-3d;
  423. -ms-transform-style: preserve-3d;
  424. -moz-transform-style: preserve-3d;
  425. -webkit-transform-style: preserve-3d;
  426. }
  427. .ls-3d-box div {
  428. overflow: hidden;
  429. background: #777;
  430. margin: 0;
  431. padding: 0;
  432. position: absolute;
  433. }
  434. /* Full screen */
  435. .ls-fullscreen {
  436. position: absolute;
  437. z-index: 10;
  438. cursor: pointer;
  439. display: block;
  440. }
  441. /* Removing all default global styles of WordPress themes */
  442. html * .ls-nav-prev,
  443. html * .ls-nav-next,
  444. html * .ls-container img,
  445. html * .ls-bottom-nav-wrapper a,
  446. html * .ls-container .ls-fullscreen,
  447. body * .ls-nav-prev,
  448. body * .ls-nav-next,
  449. body * .ls-container img,
  450. body * .ls-bottom-nav-wrapper a,
  451. body * .ls-container .ls-fullscreen,
  452. #ls-global * .ls-nav-prev,
  453. #ls-global * .ls-nav-next,
  454. #ls-global * .ls-container img,
  455. #ls-global * .ls-bottom-nav-wrapper a,
  456. #ls-global * .ls-container .ls-fullscreen,
  457. html * .ls-thumbnail a,
  458. body * .ls-thumbnail a,
  459. #ls-global * .ls-thumbnail a {
  460. transition: none;
  461. -o-transition: none;
  462. -ms-transition: none;
  463. -moz-transition: none;
  464. -webkit-transition: none;
  465. line-height: normal;
  466. outline: none;
  467. padding: 0;
  468. border: 0;
  469. }
  470. html * .ls-slide > a,
  471. body * .ls-slide > a,
  472. #ls-global * .ls-slide > a,
  473. html * .ls-slide > h1,
  474. body * .ls-slide > h1,
  475. #ls-global * .ls-slide > h1,
  476. html * .ls-slide > h2,
  477. body * .ls-slide > h2,
  478. #ls-global * .ls-slide > h2,
  479. html * .ls-slide > h3,
  480. body * .ls-slide > h3,
  481. #ls-global * .ls-slide > h3,
  482. html * .ls-slide > h4,
  483. body * .ls-slide > h4,
  484. #ls-global * .ls-slide > h4,
  485. html * .ls-slide > h5,
  486. body * .ls-slide > h5,
  487. #ls-global * .ls-slide > h5,
  488. html * .ls-slide > p,
  489. body * .ls-slide > p,
  490. #ls-global * .ls-slide > p,
  491. html * .ls-slide > div,
  492. body * .ls-slide > div,
  493. #ls-global * .ls-slide > div,
  494. html * .ls-slide > span,
  495. body * .ls-slide > span,
  496. #ls-global * .ls-slide > span,
  497. html * .ls-slide > *,
  498. body * .ls-slide > *,
  499. #ls-global * .ls-slide > * {
  500. transition: none;
  501. -o-transition: none;
  502. -ms-transition: none;
  503. -moz-transition: none;
  504. -webkit-transition: none;
  505. }
  506. html * .ls-slide > *,
  507. body * .ls-slide > *,
  508. #ls-global * .ls-slide > * {
  509. margin: 0;
  510. }
  511. html * .ls-container img,
  512. body * .ls-container img,
  513. #ls-global * .ls-container img {
  514. background: none !important;
  515. min-width: 0 !important;
  516. max-width: none !important;
  517. border-radius: 0;
  518. box-shadow: none;
  519. border: 0;
  520. padding: 0;
  521. }
  522. /*html * .ls-thumbnail a img,
  523. body * .ls-thumbnail a img,
  524. #ls-global * .ls-thumbnail a img {
  525. min-width: 100% !important;
  526. }
  527. */
  528. html * .ls-wp-container .ls-slide > *,
  529. body * .ls-wp-container .ls-slide > *,
  530. #ls-global * .ls-wp-container .ls-slide > * {
  531. line-height: normal;
  532. outline: none;
  533. padding: 0;
  534. margin: 0;
  535. border: 0;
  536. }
  537. html * .ls-wp-container .ls-slide > a > *,
  538. body * .ls-wp-container .ls-slide > a > *,
  539. #ls-global * .ls-wp-container .ls-slide > a > * {
  540. margin: 0;
  541. }
  542. html * .ls-wp-container .ls-slide > a,
  543. body * .ls-wp-container .ls-slide > a,
  544. #ls-global * .ls-wp-container .ls-slide > a {
  545. text-decoration: none;
  546. }
  547. .ls-wp-fullwidth-container,
  548. .ls-wp-fullwidth-helper,
  549. .ls-container,
  550. .ls-container * {
  551. box-sizing: content-box !important;
  552. -moz-box-sizing: content-box !important;
  553. -webkit-box-sizing: content-box !important;
  554. }
  555. html * .ls-yourlogo,
  556. body * .ls-yourlogo,
  557. #ls-global * .ls-yourlogo {
  558. margin: 0;
  559. }
  560. html * .ls-tn,
  561. body * .ls-tn,
  562. #ls-global * .ls-tn {
  563. display: none;
  564. }
  565. .site {
  566. overflow: visible !important;
  567. }
  568. /* Style of LayerSlider Debug Console */
  569. .ls-debug-console * {
  570. margin: 0 !important;
  571. padding: 0 !important;
  572. border: 0 !important;
  573. color: white !important;
  574. text-shadow: none !important;
  575. font-family: "HelveticaNeue-Light", "Helvetica Neue Light", Helvetica, Arial, sans-serif !important;
  576. line-height: normal !important;
  577. -webkit-font-smoothing: antialiased !important;
  578. text-align: left !important;
  579. font-style: normal !important;
  580. }
  581. .ls-debug-console h1 {
  582. padding-top: 10px !important;
  583. font-size: 17px !important;
  584. font-weight: bold !important;
  585. }
  586. .ls-debug-console h1:first-child {
  587. padding-top: 0 !important;
  588. }
  589. .ls-debug-console ul {
  590. padding-top: 10px !important;
  591. list-style: none !important;
  592. }
  593. .ls-debug-console li {
  594. margin-left: 10px !important;
  595. font-size: 13px !important;
  596. position: relative !important;
  597. font-weight: normal !important;
  598. }
  599. html * .ls-debug-console li ul,
  600. body * .ls-debug-console li ul,
  601. #ls-global * .ls-debug-console li ul {
  602. display: none;
  603. width: 260px;
  604. left: -10px;
  605. }
  606. .ls-debug-console li ul {
  607. position: absolute !important;
  608. bottom: 100% !important;
  609. padding: 10px 10px 10px 0 !important;
  610. background: white !important;
  611. border-radius: 10px !important;
  612. box-shadow: 0 0 20px black !important;
  613. }
  614. html * .ls-debug-console li:hover ul,
  615. body * .ls-debug-console li:hover ul,
  616. #ls-global * .ls-debug-console li:hover ul {
  617. display: block;
  618. }
  619. .ls-debug-console li ul * {
  620. color: black !important;
  621. }
  622. .ls-debug-console a {
  623. text-decoration: none !important;
  624. border-bottom: 1px dotted white !important;
  625. }
  626. .ls-error {
  627. border-radius: 5px !important;
  628. -moz-border-radius: 5px !important;
  629. -wenkit-border-radius: 5px !important;
  630. background: white !important;
  631. height: auto !important;
  632. width: auto !important;
  633. color: white !important;
  634. padding: 20px 40px 30px 80px !important;
  635. position: relative !important;
  636. box-shadow: 0 2px 20px -5px black;
  637. }
  638. .ls-error p {
  639. line-height: normal !important;
  640. text-shadow: none !important;
  641. margin: 0 !important;
  642. padding: 0 !important;
  643. border: 0 !important;
  644. text-align: justify !important;
  645. font-family: Arial, sans-serif !important;
  646. }
  647. .ls-error .ls-error-title {
  648. line-height: 40px !important;
  649. color: red !important;
  650. font-weight: bold !important;
  651. font-size: 16px !important;
  652. }
  653. .ls-error .ls-error-text {
  654. color: #555 !important;
  655. font-weight: normal !important;
  656. font-size: 13px !important;
  657. }
  658. .ls-error .ls-exclam {
  659. width: 40px !important;
  660. height: 40px !important;
  661. position: absolute !important;
  662. left: 20px !important;
  663. top: 20px !important;
  664. border-radius: 50px !important;
  665. -moz-border-radius: 50px !important;
  666. -webkit-border-radius: 50px !important;
  667. font-size: 30px !important;
  668. font-weight: bold !important;
  669. color: white !important;
  670. line-height: 40px !important;
  671. background: red !important;
  672. text-align: center !important;
  673. }
  674. /* GPU Hardware Acceleration */
  675. html * .ls-container .ls-shadow,
  676. html * .ls-container .ls-slide > *,
  677. html * .ls-container .ls-fullscreen,
  678. html * .ls-container .ls-3d-container,
  679. html * .ls-container .ls-lt-container,
  680. html * .ls-container .ls-lt-container *,
  681. html * .ls-container .ls-thumbnail-wrapper,
  682. html * .ls-container .ls-bottom-nav-wrapper,
  683. body * .ls-container .ls-shadow,
  684. body * .ls-container .ls-slide > *,
  685. body * .ls-container .ls-fullscreen,
  686. body * .ls-container .ls-3d-container,
  687. body * .ls-container .ls-lt-container,
  688. body * .ls-container .ls-lt-container *,
  689. body * .ls-container .ls-thumbnail-wrapper,
  690. body * .ls-container .ls-bottom-nav-wrapper,
  691. #ls-global * .ls-container .ls-shadow,
  692. #ls-global * .ls-container .ls-slide > *,
  693. #ls-global * .ls-container .ls-fullscreen,
  694. #ls-global * .ls-container .ls-3d-container,
  695. #ls-global * .ls-container .ls-lt-container,
  696. #ls-global * .ls-container .ls-lt-container *,
  697. #ls-global * .ls-container .ls-thumbnail-wrapper,
  698. #ls-global * .ls-container .ls-bottom-nav-wrapper,
  699. .ls-gpuhack {
  700. transform: translate3d(0, 0, 0);
  701. -o-transform: translate3d(0, 0, 0);
  702. -ms-transform: translate3d(0, 0, 0);
  703. -moz-transform: translate3d(0, 0, 0);
  704. -webkit-transform: translate3d(0, 0, 0);
  705. }
  706. .ls-videohack {
  707. transform: none !important;
  708. -o-transform: none !important;
  709. -ms-transform: none !important;
  710. -moz-transform: none !important;
  711. -webkit-transform: none !important;
  712. transform-origin: none !important;
  713. -o-transform-origin: none !important;
  714. -ms-transform-origin: none !important;
  715. -moz-transform-origin: none !important;
  716. -webkit-transform-origin: none !important;
  717. }
  718. .ls-oldiepnghack {
  719. filter: none !important;
  720. }
  721. .ls-gpuhack {
  722. width: 100% !important;
  723. height: 100% !important;
  724. left: 0px !important;
  725. top: 0px !important;
  726. }
  727. html * .ls-container .ls-webkit-hack,
  728. body * .ls-container .ls-webkit-hack,
  729. #ls-global * .ls-container .ls-webkit-hack {
  730. width: 100%;
  731. height: 100%;
  732. position: absolute;
  733. left: 0;
  734. top: 0;
  735. z-index: 1;
  736. }
  737. /* GPU */
  738. @media (transform-3d), (-o-transform-3d), (-ms-transform-3d), (-moz-transform-3d), (-webkit-transform-3d) {
  739. #ls-test3d {
  740. position: absolute;
  741. left: 9px;
  742. height: 3px;
  743. }
  744. }
  745. /* Mobile features */
  746. .ls-forcehide {
  747. display: none !important;
  748. }