-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
90 lines (77 loc) · 1015 Bytes
/
main.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/* general */
body {
background: #222428;
}
h1 {
color: #eee;
text-align: center;
margin: 20px 0;
text-transform: uppercase;
}
h5 {
padding: 5px 10px;
color: #eee;
}
p{
color: #eee;
display: inline-block;
}
/* chart */
.chart {
text-align: right;
}
svg {
width: 150px;
border-radius: 50%;
background:#bbbbbb;
transform: rotate(-90deg);
}
circle {
fill: none;
stroke-width: 32;
r: 16;
cx: 16;
cy: 16;
}
circle.first {
stroke: #ffdb66;
}
circle.second {
stroke: #fac000;
}
/* button */
.unit > p {
margin: 10px 0 0 0;
}
.col-auto {
padding: 0;
}
.btn {
height: 10px;
width: 10px;
padding: 0;
border: none;
border-radius: 0;
}
.summ {
display: inline-block;
margin: auto;
width: 10px;
height: 10px;
background: #bbbbbb;
}
.topic {
display: inline-block;
float: left;
margin: 1px;
width: 10px;
height: 10px;
background: #bbbbbb;
vertical-align: top;
}
.done {
background: #fac000;
}
.almost {
background-color: #ffdb66;
}