-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpie-chart.css
More file actions
69 lines (55 loc) · 855 Bytes
/
pie-chart.css
File metadata and controls
69 lines (55 loc) · 855 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
55
56
57
58
59
60
61
62
63
64
html {
font: 62.5% 'Helvetica';
}
body {
box-sizing: border-box;
margin: 0;
padding: 0;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
.container {
position: relative;
border: 1px solid #e2e2e2;
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
}
.pie {
margin: 2rem;
width: 30rem;
height: 30rem;
border-radius: 50%;
margin: 5rem 2rem;
}
.key {
margin: 2rem;
}
.key-list {
list-style-type: none;
font: 1.2rem/2.2 'Helvetica';
}
.key-list li {
margin-left: -4rem;
display: flex;
align-items: center;
justify-content: space-between;
}
.key-list li .icon {
width: 1.8rem;
height: 1.8rem;
border-radius: 50%;
margin-right: 2rem;
}
.key-list li .title {
flex: 1;
}
.reader {
position: absolute;
bottom: 0;
visibility: hidden;
}