Advertisement
nlozovan

Untitled

Jul 28th, 2014
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.85 KB | None | 0 0
  1.  
  2.  
  3. /*loader*/
  4. #floatingCirclesG{
  5. position:relative;
  6. width:128px;
  7. height:128px;
  8. margin: auto;
  9. -moz-transform:scale(0.6);
  10. -webkit-transform:scale(0.6);
  11. -ms-transform:scale(0.6);
  12. -o-transform:scale(0.6);
  13. transform:scale(0.6);
  14. }
  15.  
  16. .f_circleG{
  17. position:absolute;
  18. background-color:#FFFFFF;
  19. height:23px;
  20. width:23px;
  21. -moz-border-radius:12px;
  22. -moz-animation-name:f_fadeG;
  23. -moz-animation-duration:1.04s;
  24. -moz-animation-iteration-count:infinite;
  25. -moz-animation-direction:linear;
  26. -webkit-border-radius:12px;
  27. -webkit-animation-name:f_fadeG;
  28. -webkit-animation-duration:1.04s;
  29. -webkit-animation-iteration-count:infinite;
  30. -webkit-animation-direction:linear;
  31. -ms-border-radius:12px;
  32. -ms-animation-name:f_fadeG;
  33. -ms-animation-duration:1.04s;
  34. -ms-animation-iteration-count:infinite;
  35. -ms-animation-direction:linear;
  36. -o-border-radius:12px;
  37. -o-animation-name:f_fadeG;
  38. -o-animation-duration:1.04s;
  39. -o-animation-iteration-count:infinite;
  40. -o-animation-direction:linear;
  41. border-radius:12px;
  42. animation-name:f_fadeG;
  43. animation-duration:1.04s;
  44. animation-iteration-count:infinite;
  45. animation-direction:linear;
  46. }
  47.  
  48. #frotateG_01{
  49. left:0;
  50. top:52px;
  51. -moz-animation-delay:0.39s;
  52. -webkit-animation-delay:0.39s;
  53. -ms-animation-delay:0.39s;
  54. -o-animation-delay:0.39s;
  55. animation-delay:0.39s;
  56. }
  57.  
  58. #frotateG_02{
  59. left:15px;
  60. top:15px;
  61. -moz-animation-delay:0.52s;
  62. -webkit-animation-delay:0.52s;
  63. -ms-animation-delay:0.52s;
  64. -o-animation-delay:0.52s;
  65. animation-delay:0.52s;
  66. }
  67.  
  68. #frotateG_03{
  69. left:52px;
  70. top:0;
  71. -moz-animation-delay:0.65s;
  72. -webkit-animation-delay:0.65s;
  73. -ms-animation-delay:0.65s;
  74. -o-animation-delay:0.65s;
  75. animation-delay:0.65s;
  76. }
  77.  
  78. #frotateG_04{
  79. right:15px;
  80. top:15px;
  81. -moz-animation-delay:0.78s;
  82. -webkit-animation-delay:0.78s;
  83. -ms-animation-delay:0.78s;
  84. -o-animation-delay:0.78s;
  85. animation-delay:0.78s;
  86. }
  87.  
  88. #frotateG_05{
  89. right:0;
  90. top:52px;
  91. -moz-animation-delay:0.91s;
  92. -webkit-animation-delay:0.91s;
  93. -ms-animation-delay:0.91s;
  94. -o-animation-delay:0.91s;
  95. animation-delay:0.91s;
  96. }
  97.  
  98. #frotateG_06{
  99. right:15px;
  100. bottom:15px;
  101. -moz-animation-delay:1.04s;
  102. -webkit-animation-delay:1.04s;
  103. -ms-animation-delay:1.04s;
  104. -o-animation-delay:1.04s;
  105. animation-delay:1.04s;
  106. }
  107.  
  108. #frotateG_07{
  109. left:52px;
  110. bottom:0;
  111. -moz-animation-delay:1.17s;
  112. -webkit-animation-delay:1.17s;
  113. -ms-animation-delay:1.17s;
  114. -o-animation-delay:1.17s;
  115. animation-delay:1.17s;
  116. }
  117.  
  118. #frotateG_08{
  119. left:15px;
  120. bottom:15px;
  121. -moz-animation-delay:1.3s;
  122. -webkit-animation-delay:1.3s;
  123. -ms-animation-delay:1.3s;
  124. -o-animation-delay:1.3s;
  125. animation-delay:1.3s;
  126. }
  127.  
  128. @-moz-keyframes f_fadeG{
  129. 0%{
  130. background-color:#000000}
  131.  
  132. 100%{
  133. background-color:#FFFFFF}
  134.  
  135. }
  136.  
  137. @-webkit-keyframes f_fadeG{
  138. 0%{
  139. background-color:#000000}
  140.  
  141. 100%{
  142. background-color:#FFFFFF}
  143.  
  144. }
  145.  
  146. @-ms-keyframes f_fadeG{
  147. 0%{
  148. background-color:#000000}
  149.  
  150. 100%{
  151. background-color:#FFFFFF}
  152.  
  153. }
  154.  
  155. @-o-keyframes f_fadeG{
  156. 0%{
  157. background-color:#000000}
  158.  
  159. 100%{
  160. background-color:#FFFFFF}
  161.  
  162. }
  163.  
  164. @keyframes f_fadeG{
  165. 0%{
  166. background-color:#000000}
  167.  
  168. 100%{
  169. background-color:#FFFFFF}
  170.  
  171. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement