-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgithub.css
75 lines (66 loc) · 1.15 KB
/
github.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
html, body {
background-color: #000;
}
.Calendar {
width: unset !important;
height: 235px !important;
position: absolute !important;
top: 10px !important;
left: 10px !important;
}
.calendar-summary {
display: flex;
flex-direction: row;
top: 70px;
left: 10px;
width: 450px;
position:absolute;
gap: 8px;
}
.calendar-label {
font-family: "Cairo";
font-size: 10px;
color: white;
}
.calendar-value {
font-family: "Cairo";
font-size: 10px;
color: yellow;
}
#divTabulator {
max-height: 420px;
}
#divChart > div.None {
border-radius: 5px;
width: 30px;
height: 30px;
background-color: #333333;
}
#divChart > div.Low {
border-radius: 5px;
width: 30px;
height: 30px;
background-color: darkgreen;
}
#divChart > div.Medium {
border-radius: 5px;
width: 30px;
height: 30px;
background-color: orange;
}
#divChart > div.High {
border-radius: 5px;
width: 30px;
height: 30px;
background-color: yellow;
display: flex;
font-size: 16px;
justify-content: center;
align-items: center;
font-weight: 700;
color: green;
font-family: Cairo;
}
#divChart > div.First {
filter: drop-shadow(0px 0px 2px white);
}