-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
89 lines (83 loc) · 1.33 KB
/
Copy pathstyles.css
File metadata and controls
89 lines (83 loc) · 1.33 KB
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
/* svg */
g#lines line {
stroke-width: 0;
stroke: black;
}
g#lines line.selected {
stroke-width: 2;
stroke: lightgrey;
marker-end: url("#arrowhead");
}
.arrowhead {
fill: lightgrey;
}
g#circles circle {
r: 7;
fill: none;
pointer-events: all; /* for hover to work with fill:none */
}
g#circles circle:hover {
fill: gray;
}
g#fans g.string {
pointer-events: none;
}
g#fans g.hover {
stroke-width: 5;
stroke: none;
pointer-events: all;
}
/*g#fans g.hover:hover {
stroke-width: 2;
stroke: rgb(0, 102, 0);
}*/
/* html */
.toolbar {
position: absolute;
height: 34px;
left: 240px;
right: 0px;
}
.non-toolbar {
position: absolute;
top: 34px;
bottom: 0px;
left: 0px;
right: 0px;
}
.sidebar {
position: absolute;
height: 100%;
left: 0px;
width: 240px;
padding-left: 5px;
padding-right: 5px;
}
.svg-container {
position: absolute;
height: 100%;
left: 240px;
right: 0px;
/* for the scrollbars */
overflow: auto;
}
svg {
cursor: default;
background-color: #222;
margin-bottom: -5px; /* removes mysterious whitespace above scrollbar */
}
.fan-selection {
margin-top: 20px;
}
.usage {
margin-top: 50px;
}
input[type="number"] {
width: 60px;
}
h4 {
font-weight: bold;
}
dd {
margin-bottom: 5px;
}