summaryrefslogtreecommitdiff
path: root/svg.css
blob: aca104a4b223b4702168a893acd2e9d37b41a50b (plain)
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
/* style for svg contents */
.node {
    stroke: #fff;
    stroke-width: 0.5px;
}
.node.spam {
    fill: orange;
}
.node.ham {
    fill: #6c6;
}
.node.neighbor {
    fill: #fcc;
}
.node.selected {
    fill: #f00;
}
.link {
    stroke: #ddd;
    stroke-opacity: .6;
    /* fill none to prevent arcs lines being too thick */
    fill: none;
}
.arrow-head {
    fill: #399;
    fill-opacity: .6;
}
.link.neighbor {
    stroke: #f99;
}