aboutsummaryrefslogtreecommitdiffstats
path: root/ui/client/css/d3graph.styl
blob: 6d53c45fbfb6fa545b8dff336679b808f4a47239 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
.node circle {
    fill: steelblue;
}
.node text {
    font: bold 14px sans-serif;
    fill: rgb(16, 15, 15);
    text-shadow: 0 0px 0 #fff;
    /*font-size: 0.8em;*/
}
.link {
    /*
    fill: #1313AB;
    stroke: #1313AB;
    */
}
.different-groups{
    stroke: #999;
}
.default {
    stroke: #fbb;
    stroke-width: 4px;
}
.outline {
    stroke: #844;
    stroke-width: 6px;
}

div.tooltip {
    position: absolute;
    text-align: left;
    opacity 1 
    font:  bold 18px sans-serif !important;
    /* width: 60px; */
    /* height: 28px; */
    padding: 20px;
    font: 16px sans-serif;
    background: dk-gray1;
    color white
    border: 2px solid stark-blue
    pointer-events: none;
}
.background {
    stroke: white;
    stroke-width: 1px;
    fill: white;
}