prompt.les
1.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
@import "../../../less/variables";
.loading{
position:relative;
width:130px;
height:130px;
margin:0 auto;
margin-top:30px;
text-align:center;
border-radius:10px;
box-shadow: 0px 0px 10px #888888;
@-webkit-keyframes rotation {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
}
}
@-webkit-keyframes rotation1 {
from {
-webkit-transform: rotate(360deg);
}
to {
-webkit-transform: rotate(0deg);
}
}
.Rotation {
-webkit-transform: rotate(360deg);
animation: rotation 2s linear infinite;
-moz-animation: rotation 2s linear infinite;
-webkit-animation: rotation 2s linear infinite;
-o-animation: rotation 2s linear infinite;
margin-top:30px !important;
}
.Rotation1 {
position:absolute;
left:51px;
top:50px;
-webkit-transform: rotate(360deg);
animation: rotation1 1s linear infinite;
-moz-animation: rotation1 1s linear infinite;
-webkit-animation: rotation1 1s linear infinite;
-o-animation: rotation1 10s linear infinite;
}
}