jquery.galpop.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. #galpop-wrapper {
  2. background-color: rgb(0, 0, 0);
  3. background-color: rgba(0, 0, 0, .8);
  4. }
  5. #galpop-container {
  6. border-radius:5px;
  7. padding:10px;
  8. background-color:rgb(255, 255, 255);
  9. background-color:rgba(255, 255, 255, .8);
  10. }
  11. #galpop-wrapper.loaded-ajax #galpop-container,
  12. #galpop-wrapper.loaded-iframe #galpop-container {
  13. width:70vw;
  14. height:70vh;
  15. padding:0;
  16. border-radius:0;
  17. }
  18. #galpop-wrapper.loaded-iframe iframe {
  19. width:100%;
  20. height:70vh;
  21. border:0;
  22. }
  23. #galpop-wrapper.loaded-ajax #galpop-content {
  24. padding:10px 20px;
  25. }
  26. #galpop-ajax {
  27. position:absolute;
  28. top:0;
  29. left:0;
  30. right:0;
  31. bottom:0;
  32. opacity:1;
  33. -o-transition: opacity 0.5s;
  34. -ms-transition: opacity 0.5s;
  35. -moz-transition: opacity 0.5s;
  36. -webkit-transition: opacity 0.5s;
  37. transition:opacity 0.5s;
  38. background-image:url("../images/ajax-loader.gif");
  39. background-repeat:no-repeat;
  40. background-position:center;
  41. }
  42. #galpop-wrapper.complete #galpop-ajax {
  43. opacity:0;
  44. }
  45. #galpop-info {
  46. background-color: rgb(0, 0, 0);
  47. background-color: rgba(0, 0, 0, .8);
  48. color:#fff;
  49. font-size:.8em;
  50. padding:10px;
  51. left:0;
  52. bottom:0;
  53. }
  54. #galpop-close {
  55. top:-30px;
  56. right:-30px;
  57. width:36px;
  58. height:36px;
  59. background-image:url("../images/btn-close.png");
  60. background-repeat:no-repeat;
  61. }
  62. /* Important to the slider! Be careful when changing these values! */
  63. .lock-scroll {
  64. overflow: hidden !important;
  65. }
  66. #galpop-wrapper {
  67. display:none;
  68. position:fixed;
  69. top:0;
  70. left:0;
  71. right:0;
  72. bottom:0;
  73. z-index:100;
  74. }
  75. #galpop-container {
  76. position:absolute;
  77. top:50%;
  78. left:50%;
  79. -webkit-box-sizing: content-box;
  80. -moz-box-sizing: content-box;
  81. box-sizing: content-box;
  82. height:100px;
  83. width:100px;
  84. -ms-transform: translate(-50%,-50%);
  85. -webkit-transform: translate(-50%,-50%);
  86. -moz-transform: translate(-50%,-50%);
  87. -o-transform: translate(-50%,-50%);
  88. transform: translate(-50%,-50%);
  89. -o-transition: width 0.5s, height 0.5s;
  90. -ms-transition: width 0.5s, height 0.5s;
  91. -moz-transition: width 0.5s, height 0.5s;
  92. -webkit-transition: width 0.5s, height 0.5s;
  93. transition:width 0.5s, height 0.5s;
  94. overflow: visible !important;
  95. }
  96. #galpop-prev,
  97. #galpop-next {
  98. position:absolute;
  99. top:0;
  100. bottom:0;
  101. z-index:5;
  102. background-repeat:no-repeat;
  103. outline:none;
  104. }
  105. #galpop-prev {
  106. left:0;
  107. right:50%;
  108. }
  109. #galpop-next {
  110. left:50%;
  111. right:0;
  112. }
  113. #galpop-prev:hover {
  114. background-image:url("../images/btn-prev.png");
  115. background-position:left center;
  116. }
  117. #galpop-next:hover {
  118. background-image:url("../images/btn-next.png");
  119. background-position:right center;
  120. }
  121. #galpop-modal {
  122. position:relative;
  123. }
  124. #galpop-content {
  125. display:none;
  126. }
  127. #galpop-content img {
  128. vertical-align:top;
  129. }
  130. #galpop-info {
  131. position:absolute;
  132. display:none;
  133. z-index:15;
  134. }
  135. #galpop-info p {
  136. margin:0;
  137. }
  138. #galpop-info a {
  139. color:#fff;
  140. }
  141. #galpop-close {
  142. position:absolute;
  143. display:block;
  144. z-index:10;
  145. }