-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (57 loc) · 1.12 KB
/
style.css
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
@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');
:root {
--dot-diameter: 120px;
--circle-border-width: 4px;
}
.circle-container {
width: var(--dot-diameter);
height: var(--dot-diameter);
transform: rotate(-225deg);
fill: none;
stroke: #37b3cf;
stroke-dasharray: 75 100;
stroke-linecap: round;
}
.circle-container__background {
fill: none;
stroke: var(--default-color);
stroke-width: var(--circle-border-width);
stroke-dasharray: 75 100;
stroke-linecap: round;
}
.circle-container__progress {
fill: none;
stroke-linecap: round;
stroke: url(#gradient);
stroke-dasharray: 75 100;
stroke-linecap: round;
stroke-width: var(--circle-border-width);
transition: stroke-dashoffset 1s ease-in-out;
}
.stop1 {
stop-color: white;
}
.stop2 {
stop-color: white;
}
#pos {
position: absolute;
top: 5rem;
}
.pourcent {
color: white;
}
.boite {
margin: 50px;
}
/* #ombre:hover{
background-color: #cbeef6;
width: 200px;
} */
#icons {
margin: 20px;
}
.active {
background-color: #a2c7cf;;
border-radius: 10px;
}