-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (37 loc) · 668 Bytes
/
Copy pathstyle.css
File metadata and controls
44 lines (37 loc) · 668 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
graph{
fill-color: black;
}
node.moving {
size: 12px, 12px;
shape: circle;
fill-color: darkblue;
stroke-mode: plain;
stroke-color: lightblue;
stroke-width: 2px;
}
node.moving2 {
size: 12px, 12px;
shape: triangle;
fill-color: orange;
stroke-mode: plain;
stroke-color: yellow;
stroke-width: 2px;
}
node.moving3 {
size: 12px, 12px;
shape: cross;
fill-color: darkgreen;
stroke-mode: plain;
stroke-color: lightgreen;
stroke-width: 2px;
}
node.grid {
size: 0px, 0px;
shape: box;
fill-color: darkblue;
stroke-mode: plain;
stroke-color: grey;
}
edge {
fill-color: white;
}