1/*--------------------------------------------------------------
2 * Preloader CSS MS
3 *--------------------------------------------------------------
4 */
5
6.wp-smart-loader {
7 text-indent: -12345px;
8}
9
10/*--------------------------------------------------------------
11 * Preloader One
12 *--------------------------------------------------------------
13 */
14
15.smart-loader-one {
16 width: 50px;
17 height: 50px;
18 border-top: 1px solid rgba(0, 0, 0, 0.08);
19 border-right: 1px solid rgba(0, 0, 0, 0.08);
20 border-bottom: 1px solid rgba(0, 0, 0, 0.08);
21 border-left: 1px solid rgba(0, 0, 0, 0.5);
22 -webkit-border-radius: 50%;
23 -moz-border-radius: 50%;
24 -ms-border-radius: 50%;
25 border-radius: 50%;
26 -webkit-animation: spinner 700ms infinite linear;
27 -moz-animation: spinner 700ms infinite linear;
28 -ms-animation: spinner 700ms infinite linear;
29 -o-animation: spinner 700ms infinite linear;
30 animation: spinner 700ms infinite linear;
31}
32
33@-webkit-keyframes spinner {
34 0% {
35 -webkit-transform: rotate(0deg);
36 -moz-transform: rotate(0deg);
37 -ms-transform: rotate(0deg);
38 -o-transform: rotate(0deg);
39 transform: rotate(0deg);
40 }
...
</html>