-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
106 lines (106 loc) · 1.62 KB
/
style.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
body, html {
margin: 0;
padding: 0;
overflow: hidden;
width: 100%;
height: 100%;
background-color: black;
}
svg {
width: 100%;
height: 100%;
}
.node text {
font-family: monospace;
fill: #fff;
text-anchor: middle;
dominant-baseline: middle;
}
.link.full-bidirectional {
stroke: #555;
}
.link.inbound-unidirectional {
stroke: #400;
}
.link.outbound-unidirectional {
stroke: #040;
}
.link.full-bidirectional-highlight {
stroke: #fff;
}
.link.inbound-unidirectional-highlight {
stroke: #f00;
}
.link.outbound-unidirectional-highlight {
stroke: #0f0;
}
.search-bar {
position: absolute;
top: 6px;
left: 5px;
z-index: 10;
font: 12px sans-serif;
padding: 2px;
width: 360px;
background-color: #333;
color: white;
border: 0px solid;
}
.results {
font: 12px sans-serif;
position: absolute;
top: 30px;
left: 5px;
z-index: 10;
background-color: #222;
color: white;
padding: 2px;
width: 360px;
bottom: 5px;
overflow-y: auto;
border: 0px solid;
display: none;
}
.results div {
padding: 2px;
cursor: pointer;
}
.results .separator, .results .separator:hover {
text-align: center;
color: #fff;
background-color: #000;
font-weight: bold;
cursor: default;
}
.results div:hover {
background-color: #111;
}
.tooltip {
position: fixed;
top: 30px;
left: 5px;
width: auto;
height: auto;
font: 12px sans-serif;
color: white;
pointer-events: none;
}
.tooltip b {
color: #0f0;
}
.shortname {
display: inline-block;
text-align: center;
width: 5ch;
color: white;
font-family: monospace;
}
.bottom {
position: absolute;
bottom: 5px;
left: 0px;
width: 100%;
text-align: center;
font: 12px sans-serif;
color: white;
}