lineage.css 446 Bytes
Newer Older
1
g circle {
Vishal Kadam committed
2
    cursor: pointer;
Vishal Kadam committed
3
    stroke: green;
Vishal Kadam committed
4
    stroke-width: 2px;
5
    fill: url(#process-image);
Vishal Kadam committed
6 7
}

8
g circle.empty {
Vishal Kadam committed
9
    fill: #90ef96;
Vishal Kadam committed
10 11
}

12
.link {
Vishal Kadam committed
13
    fill: none;
Vishal Kadam committed
14
    stroke: green;
Vishal Kadam committed
15
    stroke-width: 2px;
Vishal Kadam committed
16 17
}

18 19 20 21 22
g text {
    pointer-events: none;
    text-shadow: 0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff;
}

Vishal Kadam committed
23 24 25 26 27 28 29
.d3-tip pre {
    max-width: 400px;
}

div.lineage {
    border-bottom: 2px solid #006600;
    margin-bottom: 30px;
Vishal Kadam committed
30
}