-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy path_boxes.less
44 lines (42 loc) · 933 Bytes
/
_boxes.less
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
/*Boxes Spinner*/
.cp-boxes:before{
.bounding-box(@boxSize/2, @boxSize/2);
content: " ";
background: @secondColor;
position: absolute;
top: (@boxSize/8*2);
left: 0;
animation: cp-boxes-animate-before @speed3x ease-in-out infinite;
}
.cp-boxes:after{
.bounding-box(@boxSize/2, @boxSize/2);
content: " ";
background: @secondColor;
position: absolute;
top: (@boxSize/8*2);
right: 0;
animation: cp-boxes-animate-after @speed3x ease-in-out infinite;
}
/*Boxes Spinner Animation*/
@keyframes cp-boxes-animate-before{
0%{
transform: translateX(-@boxSize/2) rotate(45deg);
}
50%{
transform: translateX(-@boxSize/6) rotate(225deg);
}
100%{
transform: translateX(-@boxSize/2) rotate(45deg);
}
}
@keyframes cp-boxes-animate-after{
0%{
transform: translateX(@boxSize/2) rotate(45deg);
}
50%{
transform: translateX(@boxSize/6) rotate(-225deg);
}
100%{
transform: translateX(@boxSize/2) rotate(45deg);
}
}