-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvivian_tree_layout.css
88 lines (75 loc) · 1.24 KB
/
vivian_tree_layout.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<style type="text/css">
.node circle {
cursor: pointer;
fill: #fff;
stroke: steelblue;
stroke-width: 1.5px;
}
.node text {
font-size: 11px;
cursor: hand;
}
.node.active {
stroke: red;
}
.legend circle {
fill-opacity: 1;
}
.legend text {
font-size: 15px;
font-style: oblique;
cursor: hand;
cursor: pointer;
}
#title {
position:relative;
top:10px;
left:30px;
font-size:.97em;
}
#title div {
position:relative;
font-size:.90em;
}
#title button {
font-size : 10px;
position : relative;
}
#menuButtons button {
font-size : 10px;
position : relative;
left:30px;
top:-5px;
}
.OSEHRA {
fill: #FF0000;
}
.DSS {
fill: #080;
}
.VA {
fill: #3300CC;
}
.Medsphere {
fill: #FF00FF;
}
.Oroville {
fill: #660000;
}
path.link {
fill: none;
stroke: #ccc;
stroke-width: 1.5px;
}
path.pointer {
fill: #ccc;
stroke: #ccc;
stroke-width: 3px;
}
path.link.target {
stroke-width : 2px;
stroke : #ff99aa;
}
#dependencies, #interface A:hover { text-decoration: none; background-color: #f2f2ff }
#dependencies, #interface A:link { text-decoration: underline;}
</style>