-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
65 lines (57 loc) · 988 Bytes
/
Copy pathstyles.css
File metadata and controls
65 lines (57 loc) · 988 Bytes
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
/* Visualization styles */
.node-html {
font-size: 12px;
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
background-color: #000;
border-radius: 10px;
color: #fff;
width: 20px;
height: 20px;
line-height: 20px;
text-align: center;
z-index: 1;
}
circle.node-dot {
fill: #000;
stroke: none;
}
path.link {
fill: none;
stroke: rgba(0,0,0,0.5);
}
path.deleting {
stroke: red;
}
svg {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
/* Interface stuff */
body {
margin: 0;
padding: 0;
font-size: 12px;
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}
header {
height: 40px;
padding: 10px;
background-color: #eee;
position: relative;
z-index: 1;
}
.description {
border-bottom: 1px solid #ccc;
padding: 0 0 4px 0;
margin: 0 0 4px 0;
}
form {
display: inline-block;
margin: 0 10px 0 0;
}
input {
width: 40px;
}