-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
88 lines (75 loc) · 1.6 KB
/
Copy pathstyle.css
File metadata and controls
88 lines (75 loc) · 1.6 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#btn {
display: inline-block;
overflow: hidden;
position: relative;
box-sizing: border-box;
width: 80px;
height: 80px;
left: 0px;
top: 0px;
background: transparent;
border-radius: 100px;
border: transparent;
transition: 600ms;
transition-delay: 400ms;
transition-timing-function: linear;
-moz-transition-delay: 360ms;
cursor: pointer;
}
#text{
position: absolute;
left: 81px;
top: 24px;
height: 29px;
width: 160px;
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 24px;
line-height: 29px;
z-index: 9;
color: white;
background: linear-gradient(58.96deg, #3458E4 4.09%, #AF85EE 45.33%, #F59ADA 67.93%, #FFC1CE 103.29%),
linear-gradient(0deg, #FFFFFF, #FFFFFF);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
#circle{
position: absolute;
top: 0;
left: 0;
}
#substract{
position: absolute;
left: 46px;
top: 28px;
transform: rotate(180deg) scale(0,0);
transition-duration: 600ms;
transition-delay: 400ms;
z-index: 4;
fill: none;
}
#plus{
position: absolute;
top:50%;
left: 50%;
transform: translate(-50%, -50%);
}
#oval_svg{
position: absolute;
top: 0;
left: 4px;
}
#before_btn{
content: '';
display: block;
position: absolute;
width: 1px;;
height: 80px;
left: 0px;
top: 0px;
background: linear-gradient(42.5deg, #3458E4 -15.63%, #AF85EE 46.01%, #F59ADA 79.78%, #FFC1CE 132.63%);
transition-duration: 0.9s;
transition-delay: 1.1s;
z-index: 1;
}