forked from nikantonelli/Dendrogram
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.css
60 lines (57 loc) · 1021 Bytes
/
app.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
.node text {
font: 10px sans-serif;
}
.info--box text {
font-size: 14px;
font-family: "ProximaNovaSemiBold,Helvetica,Arial"
}
.node--internal text {
text-shadow: 0 1px 0 #fff, 0 -1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff;
}
.local--link {
fill: none;
stroke: #111;
stroke-opacity: 0.4;
stroke-width: 1.5px;
}
.remote--link {
fill: none;
stroke: #ddd;
stroke-opacity: 0.4;
stroke-width: 1.5px;
}
.invisible--link {
fill: none;
stroke: #ddd;
stroke-opacity: 0.0;
stroke-width: 1.5px;
}
.predecessor--link {
fill: dashed;
stroke: lightblue;
stroke-opacity: 0.5;
stroke-width: 3px;
}
.error--node {
fill: #f00;
}
.no--errors {
fill: #0f0;
stroke: #111;
stroke-width: 2px;
}
.no--errors--done {
fill: #000;
stroke: #111;
stroke-width: 2px;
}
.no--errors--not--started {
fill: #00ffff;
stroke: #111;
stroke-width: 2px;
}
.no--errors--in--progress {
fill: #0f0;
stroke: #111;
stroke-width: 2px;
}