-
Notifications
You must be signed in to change notification settings - Fork 1
/
layout.css
107 lines (92 loc) · 1.74 KB
/
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
node {
size: 0.3gu;
fill-color: blue;
text-mode: hidden;
z-index: 1000;
}
edge {
shape: line;
arrow-size: 0px, 0px;
}
node.bypassed_receptor {
size: 0.6gu;
stroke-mode: plain;
stroke-color: black;
fill-color: yellow;
z-index: 10000;
}
node.still_receptor {
size: 0.4gu;
stroke-mode: plain;
stroke-color: black;
fill-color: yellow;
z-index: 10000;
}
node.bypassed_neuron {
size: 0.4gu;
fill-color: green;
}
node.still_neuron {
size: 0.3gu;
fill-color: red;
}
node.bypassed_effector {
size: 0.6gu;
stroke-mode: plain;
stroke-color: green;
fill-color: cyan;
z-index: 10000;
}
node.still_effector {
size: 0.4gu;
stroke-mode: plain;
stroke-color: red;
fill-color: cyan;
z-index: 10000;
}
node.bypassed_paineffector {
size: 0.6gu;
stroke-mode: plain;
stroke-color: #000000;
fill-color: magenta;
z-index: 10000;
}
node.still_paineffector {
size: 0.4gu;
stroke-mode: plain;
stroke-color: #000000;
fill-color: magenta;
z-index: 10000;
}
node.training_input {
fill-color: black;
text-mode: hidden;
}
edge.still_inhibitory {
stroke-color: rgb(255, 200, 200);
fill-color: rgb(255, 200, 200);
stroke-width: 1px;
stroke-mode: plain;
z-index: 100;
}
edge.still_excitatory {
stroke-color: rgb(200, 255, 200);
fill-color: rgb(200, 255, 200);
stroke-width: 1px;
stroke-mode: plain;
z-index: 100;
}
edge.bypassed_inhibitory {
stroke-color: red;
fill-color: red;
stroke-width: 1px;
stroke-mode: plain;
z-index: 100;
}
edge.bypassed_excitatory {
stroke-color: green;
fill-color: green;
stroke-width: 1px;
stroke-mode: plain;
z-index: 100;
}