-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmartgraph.css
More file actions
60 lines (52 loc) · 1.26 KB
/
Copy pathsmartgraph.css
File metadata and controls
60 lines (52 loc) · 1.26 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
.graph {
-fx-background-color: linear-gradient(to bottom, #F9FCFF, #F3F7FB);
}
.vertex {
-fx-stroke: #3182CE;
-fx-stroke-width: 2;
-fx-stroke-type: inside;
-fx-fill: #EBF8FF;
-fx-effect: dropshadow(gaussian, rgba(0,0,0,0.12), 10, 0.2, 0, 2);
}
.vertex:hover {
-fx-cursor: default;
-fx-stroke-width: 3;
-fx-fill: #E1F2FF;
}
.vertex-label {
-fx-font-size: 12px;
-fx-font-weight: bold;
-fx-text-fill: #1A202C;
-fx-padding: 2px 6px 2px 6px;
-fx-effect: dropshadow(gaussian, rgba(0,0,0,0.12), 6, 0.2, 0, 1);
}
.vertex-label:hover {
-fx-background-color: transparent;
-fx-background-radius: 0;
-fx-border-radius: 0;
-fx-border-color: transparent;
-fx-cursor: default;
}
.edge {
-fx-stroke: #A0AEC0;
-fx-stroke-width: 2;
-fx-stroke-dash-array: none;
-fx-fill: transparent;
-fx-stroke-line-cap: round;
-fx-opacity: 0.9;
}
.edge:hover {
-fx-stroke-width: 3;
}
.edge-label {
-fx-font-size: 10px;
-fx-text-fill: #2D3748;
-fx-background-color: rgba(255,255,255,0.85);
-fx-padding: 1 6 1 6;
-fx-background-radius: 4;
-fx-border-color: transparent;
-fx-effect: dropshadow(gaussian, rgba(0,0,0,0.10), 6, 0.2, 0, 1);
}
.arrow {
-fx-stroke-dash-array: none;
}