-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy path_heart.less
50 lines (47 loc) · 956 Bytes
/
_heart.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
45
46
47
48
49
50
/*Heart Spinner*/
.cp-heart{
animation: cp-heart-animate @speed2x ease-in-out infinite;
}
.cp-heart:before{
border-radius: @boxSize/4 @boxSize/4 0 0;
content: " ";
.bounding-box(@boxSize/2, @boxSize/4*3-1);
background-color: @thirdColor;
transform: rotate(-45deg);
position: absolute;
top: 0;
left: @boxSize/6;
}
.cp-heart:after{
border-radius: @boxSize/4 @boxSize/4 0 0;
content: " ";
.bounding-box(@boxSize/2, @boxSize/4*3-1);
background-color: @thirdColor;
transform: rotate(45deg);
position: absolute;
top: 0;
right: @boxSize/6;
}
/*Heart Spinner Animation*/
@keyframes cp-heart-animate{
0% {
transform: scale(.9);
transform-origin: center;
}
15%{
transform: scale(1.4);
transform-origin: center;
}
30%{
transform: scale(.9);
transform-origin: center;
}
45%{
transform: scale(1.4);
transform-origin: center;
}
60%, 100%{
transform: scale(.9);
transform-origin: center;
}
}