App.css 475 Bytes
Newer Older
Yuge Zhang's avatar
Yuge Zhang committed
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
svg {
  overflow: hidden;
}

.node {
  white-space: nowrap;
}

.node.input rect, .node.output rect {
  fill: #9d0f0f;
}

.node.hub rect {
  fill: #0f309d;
}

.node.blob rect {
  fill: #0F9D58;
}

.node text {
  fill: #fff;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-weight: 500;
}

.cluster rect {
  stroke: #333;
  fill: #000;
  fill-opacity: 0.1;
  stroke-width: 1.5px;
}

.edgePath path.path {
  stroke: #333;
  stroke-width: 1.5px;
  fill: none;
}