-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
122 lines (96 loc) · 1.88 KB
/
style.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
body {
/* font-family: 'Source Sans Pro', sans-serif; */
font-family: 'Roboto Mono', monospace;
padding: 1em 3em;
}
body header {
font-family: 'Roboto Slab', serif;
font-size: large;
/* text-align: center; */
}
.chart-title {
font-family: 'Roboto Mono', monospace;
}
select {
font-family: 'Roboto Mono', monospace;
}
#dashboard {
display: grid;
grid-template-columns: 1fr 2fr;
grid-template-rows: 1fr 1fr;
column-gap: 2em;
padding-top: 1em;
}
.axis-label {
font-size: 14px;
fill: black;
text-anchor: middle;
font-family: 'Roboto Mono', monospace;
}
.tick {
font-family: 'Roboto Mono', monospace;
}
.circles {
pointer-events: all;
}
#explainer {
grid-row-start: 1;
grid-row-end: span 1;
}
#table {
grid-row-start: 2;
grid-row-end: span 2;
}
th {
padding: 0 0.5em;
color: white;
background-color: black;
font-size: 20px;
}
.fancy-text {
color: black;
background-color: yellow;
}
tr {
border-bottom: solid 1px #d3d3d3;
line-height: 1.75;
}
td {
text-align: right;
padding: 0 0.5em;
color: black;
background-color: gray;
}
.seven-range {
fill: #FFFFCE;
}
.fifteen-range {
fill: #faf2f2;
}
:root {
--annotation-context-color: #00796B;
}
svg .annotation.rect text {
fill: var(--annotation-context-color);
font-size: .6em;
text-transform: uppercase;
}
svg .annotation.callout.rect path.subject{
fill-opacity: .05;
}
svg .annotation.callout.rect path.subject {
stroke: none;
}
.annotation-note-bg {
fill: rgba(0, 0, 0, 0);
}
/* controls color of dashed line */
.annotation path {
stroke: var(--annotation-context-color);
}
.annotation:not(.above):not(.anomaly) path {
stroke-dasharray: 1,3;
}
.annotation text {
fill: var(--annotation-context-color);
}