style.css 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. BODY {
  2. background: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0) 48%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 52%), -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0) 48%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 52%);
  3. background: linear-gradient(45deg, rgba(255, 255, 255, 0) 48%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 52%), linear-gradient(-45deg, rgba(255, 255, 255, 0) 48%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 52%);
  4. -webkit-background-size: 1em 1em;
  5. background-size: 1em 1em;
  6. background-color: #000;
  7. }
  8. .l-wrapper {
  9. position: absolute;
  10. width: 300px;
  11. height: 200px;
  12. top: 0;
  13. right: 0;
  14. bottom: 0;
  15. left: 0;
  16. margin: auto;
  17. text-align: center;
  18. z-index: 9999;
  19. }
  20. svg {
  21. height: 60px;
  22. width: 60px;
  23. margin: 0 2em 2em;
  24. overflow: visible;
  25. /* border: 1px solid red; */
  26. }
  27. .g-circles {
  28. -webkit-transform: scale(0.9) translate(7px, 7px);
  29. -ms-transform: scale(0.9) translate(7px, 7px);
  30. transform: scale(0.9) translate(7px, 7px);
  31. }
  32. circle {
  33. fill: #0e89fc;
  34. fill-opacity: 0;
  35. -webkit-animation: opacity 1.2s linear infinite;
  36. animation: opacity 1.2s linear infinite;
  37. }
  38. circle:nth-child(12n + 1) {
  39. -webkit-animation-delay: -0.1s;
  40. animation-delay: -0.1s;
  41. }
  42. circle:nth-child(12n + 2) {
  43. -webkit-animation-delay: -0.2s;
  44. animation-delay: -0.2s;
  45. }
  46. circle:nth-child(12n + 3) {
  47. -webkit-animation-delay: -0.3s;
  48. animation-delay: -0.3s;
  49. }
  50. circle:nth-child(12n + 4) {
  51. -webkit-animation-delay: -0.4s;
  52. animation-delay: -0.4s;
  53. }
  54. circle:nth-child(12n + 5) {
  55. -webkit-animation-delay: -0.5s;
  56. animation-delay: -0.5s;
  57. }
  58. circle:nth-child(12n + 6) {
  59. -webkit-animation-delay: -0.6s;
  60. animation-delay: -0.6s;
  61. }
  62. circle:nth-child(12n + 7) {
  63. -webkit-animation-delay: -0.7s;
  64. animation-delay: -0.7s;
  65. }
  66. circle:nth-child(12n + 8) {
  67. -webkit-animation-delay: -0.8s;
  68. animation-delay: -0.8s;
  69. }
  70. circle:nth-child(12n + 9) {
  71. -webkit-animation-delay: -0.9s;
  72. animation-delay: -0.9s;
  73. }
  74. circle:nth-child(12n + 10) {
  75. -webkit-animation-delay: -1s;
  76. animation-delay: -1s;
  77. }
  78. circle:nth-child(12n + 11) {
  79. -webkit-animation-delay: -1.1s;
  80. animation-delay: -1.1s;
  81. }
  82. circle:nth-child(12n + 12) {
  83. -webkit-animation-delay: -1.2s;
  84. animation-delay: -1.2s;
  85. }
  86. .g-circles--v2 circle {
  87. fill-opacity: 0;
  88. stroke-opacity: 0;
  89. stroke-width: 1;
  90. stroke: yellowgreen;
  91. -webkit-animation-name: opacity-stroke, colors, colors-stroke, transform-2;
  92. animation-name: opacity-stroke, colors, colors-stroke, transform-2;
  93. }
  94. .g-circles--v3 circle {
  95. fill-opacity: 1;
  96. -webkit-animation-name: opacity, colors;
  97. animation-name: opacity, colors;
  98. }
  99. .g-circles--v4 circle {
  100. fill-opacity: 1;
  101. fill: orange;
  102. -webkit-transform-origin: 60px 60px;
  103. -ms-transform-origin: 60px 60px;
  104. transform-origin: 60px 60px;
  105. -webkit-animation-name: opacity, colors-3, transform;
  106. animation-name: opacity, colors-3, transform;
  107. }
  108. @-webkit-keyframes opacity {
  109. 3% {
  110. fill-opacity: 1;
  111. }
  112. 75% {
  113. fill-opacity: 0;
  114. }
  115. }
  116. @keyframes opacity {
  117. 3% {
  118. fill-opacity: 1;
  119. }
  120. 75% {
  121. fill-opacity: 0;
  122. }
  123. }
  124. @-webkit-keyframes opacity-stroke {
  125. 10% {
  126. stroke-opacity: 1;
  127. }
  128. 85% {
  129. stroke-opacity: 0;
  130. }
  131. }
  132. @keyframes opacity-stroke {
  133. 10% {
  134. stroke-opacity: 1;
  135. }
  136. 85% {
  137. stroke-opacity: 0;
  138. }
  139. }
  140. @-webkit-keyframes colors {
  141. 0% {
  142. fill: yellowgreen;
  143. }
  144. 10% {
  145. fill: gold;
  146. }
  147. 75% {
  148. fill: crimson;
  149. }
  150. }
  151. @keyframes colors {
  152. 0% {
  153. fill: yellowgreen;
  154. }
  155. 10% {
  156. fill: gold;
  157. }
  158. 75% {
  159. fill: crimson;
  160. }
  161. }
  162. @-webkit-keyframes colors-stroke {
  163. 0% {
  164. stroke: yellowgreen;
  165. }
  166. 10% {
  167. stroke: gold;
  168. }
  169. 75% {
  170. stroke: crimson;
  171. }
  172. }
  173. @keyframes colors-stroke {
  174. 0% {
  175. stroke: yellowgreen;
  176. }
  177. 10% {
  178. stroke: gold;
  179. }
  180. 75% {
  181. stroke: crimson;
  182. }
  183. }
  184. @-webkit-keyframes colors-2 {
  185. 0% {
  186. fill: yellow;
  187. }
  188. 50% {
  189. fill: red;
  190. }
  191. 65% {
  192. fill: orangered;
  193. }
  194. 95% {
  195. fill: gold;
  196. }
  197. }
  198. @keyframes colors-2 {
  199. 0% {
  200. fill: yellow;
  201. }
  202. 50% {
  203. fill: red;
  204. }
  205. 65% {
  206. fill: orangered;
  207. }
  208. 95% {
  209. fill: gold;
  210. }
  211. }
  212. @-webkit-keyframes colors-3 {
  213. 0% {
  214. fill: yellowgreen;
  215. }
  216. 50% {
  217. fill: turquoise;
  218. }
  219. 65% {
  220. fill: yellow;
  221. }
  222. 95% {
  223. fill: orange;
  224. }
  225. }
  226. @keyframes colors-3 {
  227. 0% {
  228. fill: yellowgreen;
  229. }
  230. 50% {
  231. fill: turquoise;
  232. }
  233. 65% {
  234. fill: yellow;
  235. }
  236. 95% {
  237. fill: orange;
  238. }
  239. }
  240. @-webkit-keyframes transform {
  241. 10% {
  242. -webkit-transform: scale(0.75);
  243. transform: scale(0.75);
  244. }
  245. }
  246. @keyframes transform {
  247. 10% {
  248. -webkit-transform: scale(0.75);
  249. transform: scale(0.75);
  250. }
  251. }
  252. @-webkit-keyframes transform-2 {
  253. 40% {
  254. -webkit-transform: scale(0.85);
  255. transform: scale(0.85);
  256. }
  257. 60% {
  258. stroke-width: 20;
  259. }
  260. }
  261. @keyframes transform-2 {
  262. 40% {
  263. -webkit-transform: scale(0.85);
  264. transform: scale(0.85);
  265. }
  266. 60% {
  267. stroke-width: 20;
  268. }
  269. }