style-1.css 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  1. *{
  2. margin:0em;
  3. padding:0em;
  4. }
  5. body {
  6. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  7. background: #403833;
  8. font-family: 'Open Sans';
  9. font-weight: 100;
  10. color:#f2f2f2;
  11. font-size:100%;
  12. margin:0em;
  13. padding:0em;
  14. }
  15. /* Start the loader code, first, let's align it the center of screen */
  16. .loader {
  17. position: absolute;
  18. top: 50%;
  19. left: 50%;
  20. -webkit-transform: translate(-50%, -50%);
  21. -moz-transform: translate(-50%, -50%);
  22. -mos-transform: translate(-50%, -50%);
  23. -o-transform: translate(-50%, -50%);
  24. transform: translate(-50%, -50%);
  25. text-align:center;
  26. /* disable selection and cursor changes */
  27. -webkit-touch-callout: none;
  28. -webkit-user-select: none;
  29. -khtml-user-select: none;
  30. -moz-user-select: none;
  31. -ms-user-select: none;
  32. user-select: none;
  33. cursor:default;
  34. }
  35. /* Text align it the center of screen and connect the looped animation for 2 seconds */
  36. .text{
  37. position: absolute;
  38. left: -1.3em;
  39. top: -1.7em;
  40. -webkit-animation: text 2s infinite;
  41. -moz-animation: text 2s infinite;
  42. -moz-animation: text 2s infinite;
  43. -ms-animation: text 2s infinite;
  44. -o-animation: text 2s infinite;
  45. animation: text 2s infinite;
  46. }
  47. /* Set for the first layer vertical position */
  48. .vertical{
  49. position:absolute;
  50. top: -1.84em;
  51. left: -0.4em;
  52. -webkit-transform: rotate(90deg);
  53. -moz-transform: rotate(90deg);
  54. -ms-transform: rotate(90deg);
  55. -o-transform: rotate(90deg);
  56. transform: rotate(90deg);
  57. }
  58. /* Set for the second layer horizontal position */
  59. .horizontal{
  60. position:absolute;
  61. top:0em;
  62. left:0em;
  63. -webkit-transform: rotate(0deg);
  64. -moz-transform: rotate(0deg);
  65. -ms-transform: rotate(0deg);
  66. -o-transform: rotate(0deg);
  67. transform: rotate(0deg);
  68. }
  69. /* The next two classes do mirror for animation */
  70. .circlesup{
  71. position:absolute;
  72. top: -4.7em;
  73. right: 12.1em;
  74. }
  75. .circlesdwn{
  76. position:absolute;
  77. top:2.5em;
  78. right:-13.5em;
  79. -webkit-transform: rotate(180deg);
  80. -moz-transform: rotate(180deg);
  81. -ms-transform: rotate(180deg);
  82. -o-transform: rotate(180deg);
  83. transform: rotate(180deg);
  84. }
  85. /* Create a container for our circles, rotate it 45 degrees and set animation*/
  86. .circle {
  87. position: absolute;
  88. width: 15em;
  89. height: 15em;
  90. -webkit-transform: rotate(45deg);
  91. -moz-transform: rotate(45deg);
  92. -ms-transform: rotate(45deg);
  93. -o-transform: rotate(45deg);
  94. transform: rotate(45deg);
  95. -webkit-animation: orbit 2s infinite;
  96. -moz-animation: orbit 2s infinite;
  97. -moz-animation: orbit 2s infinite;
  98. -ms-animation: orbit 2s infinite;
  99. -o-animation: orbit 2s infinite;
  100. animation: orbit 2s infinite;
  101. z-index:5;
  102. }
  103. /* Style's of our circles */
  104. .circle:after {
  105. content: '';
  106. position: absolute;
  107. width: 2em;
  108. height: 2em;
  109. -webkit-border-radius: 100%;
  110. -moz-border-radius: 100%;
  111. -ms-border-radius: 100%;
  112. -o-border-radius: 100%;
  113. border-radius: 100%;
  114. background: #13A3A5; /* Pick a color 1*/
  115. }
  116. .circle:nth-child(2) {
  117. -webkit-animation-delay: 100ms;
  118. -moz-animation-delay: 100ms;
  119. -ms-animation-delay: 100ms;
  120. -o-animation-delay: 100ms;
  121. animation-delay: 100ms;
  122. z-index:4;
  123. }
  124. .circle:nth-child(2):after {
  125. background: #56bebf; /* Pick a color 2*/
  126. -webkit-transform: scale(0.8,0.8);
  127. -moz-transform: scale(0.8,0.8);
  128. -ms-transform: scale(0.8,0.8);
  129. -o-transform: scale(0.8,0.8);
  130. transform: scale(0.8,0.8);
  131. }
  132. .circle:nth-child(3) {
  133. -webkit-animation-delay: 225ms;
  134. -moz-animation-delay: 225ms;
  135. -ms-animation-delay: 225ms;
  136. -o-animation-delay: 225ms;
  137. animation-delay: 225ms;
  138. z-index:3;
  139. }
  140. .circle:nth-child(3):after {
  141. background: #ffa489; /* Pick a color 3*/
  142. -webkit-transform: scale(0.6,0.6);
  143. -moz-transform: scale(0.6,0.6);
  144. -ms-transform: scale(0.6,0.6);
  145. -o-transform: scale(0.6,0.6);
  146. transform: scale(0.6,0.6);
  147. }
  148. .circle:nth-child(4) {
  149. -webkit-animation-delay: 350ms;
  150. -moz-animation-delay: 350ms;
  151. -ms-animation-delay: 350ms;
  152. -o-animation-delay: 350ms;
  153. animation-delay: 350ms;
  154. z-index:2;
  155. }
  156. .circle:nth-child(4):after {
  157. background: #ff6d37; /* Pick a color 4*/
  158. -webkit-transform: scale(0.4,0.4);
  159. -moz-transform: scale(0.4,0.4);
  160. -ms-transform: scale(0.4,0.4);
  161. -o-transform: scale(0.4,0.4);
  162. transform: scale(0.4,0.4);
  163. }
  164. .circle:nth-child(5) {
  165. -webkit-animation-delay: 475ms;
  166. -moz-animation-delay: 475ms;
  167. -ms-animation-delay: 475ms;
  168. -o-animation-delay: 475ms;
  169. animation-delay: 475ms;
  170. z-index:1;
  171. }
  172. .circle:nth-child(5):after {
  173. background: #DB2F00; /* Pick a color 5*/
  174. -webkit-transform: scale(0.2,0.2);
  175. -moz-transform: scale(0.2,0.2);
  176. -ms-transform: scale(0.2,0.2);
  177. -o-transform: scale(0.2,0.2);
  178. transform: scale(0.2,0.2);
  179. }
  180. /* Animation keys */
  181. @-webkit-keyframes orbit {
  182. 0% { -webkit-transform:rotate(45deg); }
  183. 5% { -webkit-transform:rotate(45deg);
  184. -webkit-animation-timing-function: ease-out; }
  185. 70% { -webkit-transform:rotate(405deg);
  186. -webkit-animation-timing-function: ease-in; }
  187. 100% { -webkit-transform:rotate(405deg); }
  188. }
  189. @-moz-keyframes orbit {
  190. 0% { -moz-transform:rotate(45deg); }
  191. 5% { -moz-transform:rotate(45deg);
  192. -moz-animation-timing-function: ease-out; }
  193. 70% { -moz-transform:rotate(405deg);
  194. -moz-animation-timing-function: ease-in; }
  195. 100% { -moz-transform:rotate(405deg); }
  196. }
  197. @-ms-keyframes orbit {
  198. 0% { -ms-transform:rotate(45deg); }
  199. 5% { -ms-transform:rotate(45deg);
  200. -ms-animation-timing-function: ease-out; }
  201. 70% { -ms-transform:rotate(405deg);
  202. -ms-animation-timing-function: ease-in; }
  203. 100% { -ms-transform:rotate(405deg); }
  204. }
  205. @-o-keyframes orbit {
  206. 0% { -o-transform:rotate(45deg); }
  207. 5% { -o-transform:rotate(45deg);
  208. -o-animation-timing-function: ease-out; }
  209. 70% { -o-transform:rotate(405deg);
  210. -o-animation-timing-function: ease-in; }
  211. 100% { -o-transform:rotate(405deg); }
  212. }
  213. @keyframes orbit {
  214. 0% { transform:rotate(45deg); }
  215. 5% { transform:rotate(45deg);
  216. animation-timing-function: ease-out; }
  217. 70% { transform:rotate(405deg);
  218. animation-timing-function: ease-in; }
  219. 100% { transform:rotate(405deg); }
  220. }
  221. @-webkit-keyframes text {
  222. 0% {-webkit-transform:scale(0.2,0.2);
  223. -webkit-animation-timing-function: ease-out; }
  224. 40%,60%{ -webkit-transform:scale(1,1);
  225. -webkit-animation-timing-function: ease-out; }
  226. 70%,100%{ -webkit-transform:scale(0.2,0.2); }
  227. }
  228. @-moz-keyframes text {
  229. 0% {-moz-transform:scale(0.2,0.2);
  230. -moz-animation-timing-function: ease-out; }
  231. 50% { -moz-transform:scale(1,1);
  232. -moz-animation-timing-function: ease-out; }
  233. 60% { -moz-transform:scale(1,1);
  234. -moz-animation-timing-function: ease-out; }
  235. 100% { -moz-transform:scale(0.2,0.2); }
  236. }
  237. @-mos-keyframes text {
  238. 0% {-mos-transform:scale(0.2,0.2);
  239. -mos-animation-timing-function: ease-out; }
  240. 50% { -mos-transform:scale(1,1);
  241. -mos-animation-timing-function: ease-out; }
  242. 60% { -mos-transform:scale(1,1);
  243. -mos-animation-timing-function: ease-out; }
  244. 100% { -mos-transform:scale(0.2,0.2); }
  245. }
  246. @-o-keyframes text {
  247. 0% { -o-transform:scale(0.2,0.2);
  248. -o-animation-timing-function: ease-out; }
  249. 50% { -o-transform:scale(1,1);
  250. -o-animation-timing-function: ease-out; }
  251. 60% { -o-transform:scale(1,1);
  252. -o-animation-timing-function: ease-out; }
  253. 100% { -o-transform:scale(0.2,0.2); }
  254. }
  255. @keyframes text {
  256. 0% { transform:scale(0.2,0.2);
  257. animation-timing-function: ease-out; }
  258. 50% { transform:scale(1,1);
  259. animation-timing-function: ease-out; }
  260. 60% { transform:scale(1,1);
  261. animation-timing-function: ease-out; }
  262. 100% { transform:scale(0.2,0.2); }
  263. }