-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraph.css
More file actions
49 lines (39 loc) · 725 Bytes
/
graph.css
File metadata and controls
49 lines (39 loc) · 725 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
/* SPDX-License-Identifier: MIT */
svg.smolgraph {
background: #191724;
}
svg.smolgraph > .zoom-out {
text-anchor: end;
cursor: pointer;
}
svg.smolgraph > a > text {
fill: #aaa;
}
svg.smolgraph text {
font-family: monospace;
font-size: 12;
white-space: pre;
fill: #eee;
}
svg.smolgraph .tick {
stroke: #444;
stroke-width: 0.5;
}
svg.smolgraph > .tracker > line {
stroke: #eee;
stroke-width: 1;
}
svg.smolgraph > .tracker > circle {
fill: #eee;
/* radius should be here, but firefix doesn't like it */
}
svg.smolgraph .key {
fill: rgba(0,0,0,0.4);
}
svg.smolgraph > .tracker > rect {
fill: rgba(255,255,255,0.1);
}
svg.smolgraph .overlay {
fill: transparent;
cursor: crosshair;
}