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.

pace-theme-bounce.css 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. /* This is a compiled file, to make changes persist, consider editing under the templates directory */
  2. .pace {
  3. width: 140px;
  4. height: 300px;
  5. position: fixed;
  6. top: -90px;
  7. right: -20px;
  8. z-index: 2000;
  9. -webkit-transform: scale(0);
  10. -moz-transform: scale(0);
  11. -ms-transform: scale(0);
  12. -o-transform: scale(0);
  13. transform: scale(0);
  14. opacity: 0;
  15. -webkit-transition: all 2s linear 0s;
  16. -moz-transition: all 2s linear 0s;
  17. transition: all 2s linear 0s;
  18. }
  19. .pace.pace-active {
  20. -webkit-transform: scale(.25);
  21. -moz-transform: scale(.25);
  22. -ms-transform: scale(.25);
  23. -o-transform: scale(.25);
  24. transform: scale(.25);
  25. opacity: 1;
  26. }
  27. .pace .pace-activity {
  28. width: 140px;
  29. height: 140px;
  30. border-radius: 70px;
  31. background: #fcd25a;
  32. position: absolute;
  33. top: 0;
  34. z-index: 1911;
  35. -webkit-animation: pace-bounce 1s infinite;
  36. -moz-animation: pace-bounce 1s infinite;
  37. -o-animation: pace-bounce 1s infinite;
  38. -ms-animation: pace-bounce 1s infinite;
  39. animation: pace-bounce 1s infinite;
  40. }
  41. .pace .pace-progress {
  42. position: absolute;
  43. display: block;
  44. left: 50%;
  45. bottom: 0;
  46. z-index: 1910;
  47. margin-left: -30px;
  48. width: 60px;
  49. height: 75px;
  50. background: rgba(20, 20, 20, .1);
  51. box-shadow: 0 0 20px 35px rgba(20, 20, 20, .1);
  52. border-radius: 30px / 40px;
  53. -webkit-transform: scaleY(.3) !important;
  54. -moz-transform: scaleY(.3) !important;
  55. -ms-transform: scaleY(.3) !important;
  56. -o-transform: scaleY(.3) !important;
  57. transform: scaleY(.3) !important;
  58. -webkit-animation: pace-compress .5s infinite alternate;
  59. -moz-animation: pace-compress .5s infinite alternate;
  60. -o-animation: pace-compress .5s infinite alternate;
  61. -ms-animation: pace-compress .5s infinite alternate;
  62. animation: pace-compress .5s infinite alternate;
  63. }
  64. @-webkit-keyframes pace-bounce {
  65. 0% {
  66. top: 0;
  67. -webkit-animation-timing-function: ease-in;
  68. }
  69. 40% {
  70. }
  71. 50% {
  72. top: 140px;
  73. height: 140px;
  74. -webkit-animation-timing-function: ease-out;
  75. }
  76. 55% {
  77. top: 160px;
  78. height: 120px;
  79. border-radius: 70px / 60px;
  80. -webkit-animation-timing-function: ease-in;
  81. }
  82. 65% {
  83. top: 120px;
  84. height: 140px;
  85. border-radius: 70px;
  86. -webkit-animation-timing-function: ease-out;
  87. }
  88. 95% {
  89. top: 0;
  90. -webkit-animation-timing-function: ease-in;
  91. }
  92. 100% {
  93. top: 0;
  94. -webkit-animation-timing-function: ease-in;
  95. }
  96. }
  97. @-moz-keyframes pace-bounce {
  98. 0% {
  99. top: 0;
  100. -moz-animation-timing-function: ease-in;
  101. }
  102. 40% {
  103. }
  104. 50% {
  105. top: 140px;
  106. height: 140px;
  107. -moz-animation-timing-function: ease-out;
  108. }
  109. 55% {
  110. top: 160px;
  111. height: 120px;
  112. border-radius: 70px / 60px;
  113. -moz-animation-timing-function: ease-in;
  114. }
  115. 65% {
  116. top: 120px;
  117. height: 140px;
  118. border-radius: 70px;
  119. -moz-animation-timing-function: ease-out;
  120. }
  121. 95% {
  122. top: 0;
  123. -moz-animation-timing-function: ease-in;
  124. }
  125. 100% {
  126. top: 0;
  127. -moz-animation-timing-function: ease-in;
  128. }
  129. }
  130. @keyframes pace-bounce {
  131. 0% {
  132. top: 0;
  133. animation-timing-function: ease-in;
  134. }
  135. 50% {
  136. top: 140px;
  137. height: 140px;
  138. animation-timing-function: ease-out;
  139. }
  140. 55% {
  141. top: 160px;
  142. height: 120px;
  143. border-radius: 70px / 60px;
  144. animation-timing-function: ease-in;
  145. }
  146. 65% {
  147. top: 120px;
  148. height: 140px;
  149. border-radius: 70px;
  150. animation-timing-function: ease-out;
  151. }
  152. 95% {
  153. top: 0;
  154. animation-timing-function: ease-in;
  155. }
  156. 100% {
  157. top: 0;
  158. animation-timing-function: ease-in;
  159. }
  160. }
  161. @-webkit-keyframes pace-compress {
  162. 0% {
  163. bottom: 0;
  164. margin-left: -30px;
  165. width: 60px;
  166. height: 75px;
  167. background: rgba(20, 20, 20, .1);
  168. box-shadow: 0 0 20px 35px rgba(20, 20, 20, .1);
  169. border-radius: 30px / 40px;
  170. -webkit-animation-timing-function: ease-in;
  171. }
  172. 100% {
  173. bottom: 30px;
  174. margin-left: -10px;
  175. width: 20px;
  176. height: 5px;
  177. background: rgba(20, 20, 20, .3);
  178. box-shadow: 0 0 20px 35px rgba(20, 20, 20, .3);
  179. border-radius: 20px / 20px;
  180. -webkit-animation-timing-function: ease-out;
  181. }
  182. }
  183. @-moz-keyframes pace-compress {
  184. 0% {
  185. bottom: 0;
  186. margin-left: -30px;
  187. width: 60px;
  188. height: 75px;
  189. background: rgba(20, 20, 20, .1);
  190. box-shadow: 0 0 20px 35px rgba(20, 20, 20, .1);
  191. border-radius: 30px / 40px;
  192. -moz-animation-timing-function: ease-in;
  193. }
  194. 100% {
  195. bottom: 30px;
  196. margin-left: -10px;
  197. width: 20px;
  198. height: 5px;
  199. background: rgba(20, 20, 20, .3);
  200. box-shadow: 0 0 20px 35px rgba(20, 20, 20, .3);
  201. border-radius: 20px / 20px;
  202. -moz-animation-timing-function: ease-out;
  203. }
  204. }
  205. @keyframes pace-compress {
  206. 0% {
  207. bottom: 0;
  208. margin-left: -30px;
  209. width: 60px;
  210. height: 75px;
  211. background: rgba(20, 20, 20, .1);
  212. box-shadow: 0 0 20px 35px rgba(20, 20, 20, .1);
  213. border-radius: 30px / 40px;
  214. animation-timing-function: ease-in;
  215. }
  216. 100% {
  217. bottom: 30px;
  218. margin-left: -10px;
  219. width: 20px;
  220. height: 5px;
  221. background: rgba(20, 20, 20, .3);
  222. box-shadow: 0 0 20px 35px rgba(20, 20, 20, .3);
  223. border-radius: 20px / 20px;
  224. animation-timing-function: ease-out;
  225. }
  226. }