1/*------------------------------
2 PRELOADER
3-------------------------------*/
4
5.preeloader {
6 background: rgba(255, 255, 255, 1) none repeat scroll 0 0;
7 height: 100%;
8 position: fixed;
9 width: 100%;
10 z-index: 999999;
11}
12
13.preloader-spinner {
14 -webkit-animation: 1s ease-out 0s normal none infinite running pulsate;
15 animation: 1s ease-out 0s normal none infinite running pulsate;
16 border: 5px solid #292929;
17 border-radius: 40px;
18 display: block;
19 height: 40px;
20 left: 50%;
21 margin: -20px 0 0 -20px;
22 opacity: 0;
23 position: fixed;
24 top: 50%;
25 width: 40px;
26 z-index: 10;
27}
28
29@-webkit-keyframes pulsate {
30 0% {
31 opacity: 0;
32 -webkit-transform: scale(0.1);
33 transform: scale(0.1);
34 }
35 50% {
36 opacity: 1;
37 }
38 100% {
39 opacity: 0;
40 -webkit-transform: scale(1.2);
...
</html>