-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (52 loc) · 908 Bytes
/
style.css
File metadata and controls
54 lines (52 loc) · 908 Bytes
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
.accuracy-badge {
display: flex;
justify-content: center;
align-items: center;
height: 400px;
padding: 30px;
background-color: transparent;
}
svg {
height: 100%; /* to change size of badge, change these values */
width: 100%;
overflow: visible;
}
circle {
stroke-width: 16px;
fill: transparent;
transition: stroke-dashoffset 2.55s;
transform: rotate(-90deg);
transform-origin: 50% 50%;
}
#under-amount-blue {
stroke: white;
stroke-width: 20px;
/* opacity: 0.2; */
}
#under-ex-date-red {
stroke: white;
stroke-width: 20px;
/* opacity: 0.2; */
}
#under-record-date-yellow {
stroke: white;
stroke-width: 20px;
/* opacity: 0.3; */
}
#under-pay-date-green {
stroke: white;
stroke-width: 20px;
/* opacity: 0.2; */
}
#amount-blue {
stroke: blue;
}
#ex-date-red {
stroke: red;
}
#record-date-yellow {
stroke: yellow;
}
#pay-date-green {
stroke: green;
}