Dpack get data Node : V10
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

185 lines
3.1 KiB

  1. .popupS-layer{
  2. -webkit-box-shadow: 0 0 20px rgba(0,0,0,.25);
  3. -moz-box-shadow: 0 0 20px rgba(0,0,0,.25);
  4. box-shadow: 0 0 20px rgba(0,0,0,.25);
  5. position: relative;
  6. border-radius:6px;
  7. background-color: #FFF;
  8. margin:20px;
  9. z-index:1000;
  10. }
  11. .popupS-resetFocus {
  12. border: 0;
  13. clip: rect(0 0 0 0);
  14. height: 1px;
  15. margin: -1px;
  16. overflow: hidden;
  17. padding: 0;
  18. position: absolute;
  19. width: 1px;
  20. }
  21. .popupS-close{
  22. position: absolute;
  23. top: 0;
  24. right: 0;
  25. line-height: 40px;
  26. font-size: 32px;
  27. text-align: center;
  28. font-weight: 700;
  29. width: 32px;
  30. height: 40px;
  31. cursor: pointer;
  32. z-index:1020;
  33. }
  34. .popupS-title{
  35. position: absolute;
  36. width: 100%;
  37. line-height: 40px;
  38. text-align: center;
  39. white-space: nowrap;
  40. overflow: hidden;
  41. text-overflow: ellipsis;
  42. margin: 0 auto;
  43. z-index:1001;
  44. }
  45. .popupS-title + .popupS-content{
  46. padding-bottom:20px;
  47. }
  48. .popupS-content{
  49. max-width:700px;
  50. padding:40px;
  51. border-radius:6px;
  52. }
  53. .popupS-content img{
  54. max-width:100%;
  55. height:auto;
  56. }
  57. .popupS-layer .btn{
  58. float:right;
  59. }
  60. /*
  61. * Default Animation
  62. * very Important
  63. */
  64. .popupS-layer{
  65. -webkit-transition: opacity .3s;
  66. -o-transition: opacity .3s;
  67. transition: opacity .3s;
  68. opacity: 0;
  69. }
  70. .popupS-overlay{
  71. -webkit-transition: opacity .3s ease;
  72. -o-transition: opacity .3s ease;
  73. transition: opacity .3s ease;
  74. background:rgb(0,0,0);
  75. opacity: 0;
  76. }
  77. .popupS-layer.popupS-open{
  78. opacity: 1;
  79. }
  80. .popupS-open>.popupS-overlay{
  81. opacity:.6;
  82. }
  83. /* Loader */
  84. @-moz-keyframes spinner {
  85. to {-moz-transform: rotate(360deg);
  86. transform: rotate(360deg);}
  87. }
  88. @-o-keyframes spinner {
  89. to {-o-transform: rotate(360deg);
  90. transform: rotate(360deg);}
  91. }
  92. @-webkit-keyframes spinner {
  93. to {-webkit-transform: rotate(360deg);}
  94. }
  95. @keyframes spinner {
  96. to {transform: rotate(360deg);}
  97. }
  98. @-moz-keyframes pulsate {
  99. 0% {
  100. -moz-transform:scale(.1);
  101. transform:scale(.1);
  102. opacity: 0.0;
  103. }
  104. 50% {
  105. opacity:1;
  106. }
  107. 100% {
  108. -moz-transform:scale(1.2);
  109. transform:scale(1.2);
  110. opacity:0;
  111. }
  112. }
  113. @-o-keyframes pulsate {
  114. 0% {
  115. -o-transform:scale(.1);
  116. transform:scale(.1);
  117. opacity: 0.0;
  118. }
  119. 50% {
  120. opacity:1;
  121. }
  122. 100% {
  123. -o-transform:scale(1.2);
  124. transform:scale(1.2);
  125. opacity:0;
  126. }
  127. }
  128. @-webkit-keyframes pulsate {
  129. 0% {
  130. transform:scale(.1);
  131. opacity: 0.0;
  132. }
  133. 50% {
  134. opacity:1;
  135. }
  136. 100% {
  137. transform:scale(1.2);
  138. opacity:0;
  139. }
  140. }
  141. @keyframes pulsate {
  142. 0% {
  143. transform:scale(.1);
  144. opacity: 0.0;
  145. }
  146. 50% {
  147. opacity:1;
  148. }
  149. 100% {
  150. transform:scale(1.2);
  151. opacity:0;
  152. }
  153. }
  154. .popupS-loading{
  155. width: 30px;
  156. height: 30px;
  157. position: absolute;
  158. top: 50%;
  159. left: 50%;
  160. margin-top: -15px;
  161. margin-left: -15px;
  162. border-radius: 30px;
  163. }
  164. .popupS-loading.pulser{
  165. border: 3px solid #1caff6;
  166. opacity: 0;
  167. -moz-animation: pulsate 1s ease-out infinite;
  168. -o-animation: pulsate 1s ease-out infinite;
  169. -webkit-animation: pulsate 1s ease-out infinite;
  170. animation: pulsate 1s ease-out infinite;
  171. }
  172. .popupS-loading.spinner{
  173. border-top: 3px solid #1caff6;
  174. border-right: 3px solid transparent;
  175. -moz-animation: spinner .6s linear infinite;
  176. -o-animation: spinner .6s linear infinite;
  177. -webkit-animation: spinner .6s linear infinite;
  178. animation: spinner .6s linear infinite;
  179. }