blob: e5ca66cc615d48faa58ca2bdf4f50cda01004707 (
plain)
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
|
table.activity-chart {
border-spacing: 4px;
}
table.activity-chart tr {
height: 11px;
}
td.activity-chart-label {
position: relative;
font-size: 12px;
min-width: 2em;
}
td.activity-chart-label span {
position: absolute;
top: -3px;
}
td[data-activity-level] {
box-sizing: border-box;
outline-width: 1px;
outline-style: solid;
outline-offset: -1px;
outline-color: rgba(27, 31, 35, 0.06);
border-radius: 2px;
height: 11px;
min-width: 11px;
}
td[data-activity-level="0"] {
background-color: #ccc;
}
td[data-activity-level="1"] {
background-color: #9be9a8;
}
td[data-activity-level="2"] {
background-color: #40c463;
}
td[data-activity-level="3"] {
background-color: #30a14e;
}
td[data-activity-level="4"] {
background-color: #216e39;
}
|