-
Notifications
You must be signed in to change notification settings - Fork 9
/
smartgraph.css
50 lines (42 loc) · 861 Bytes
/
smartgraph.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
/*
STYLESHEET FOR JAVAFXGRAPH VISUALIZATION
*/
.graph {
-fx-background-color: #F4FFFB;
}
.vertex {
-fx-stroke-width: 6;
-fx-stroke: #000cff;
-fx-stroke-type: inside; /* you should keep this if using arrows */
-fx-fill: #23b0f5;
}
.vertex-label {
-fx-font: bold 18pt "arial";
}
.edge {
-fx-stroke-width: 4;
-fx-stroke: #ff0c00;
-fx-fill: transparent; /*important for curved edges */
-fx-stroke-line-cap: butt;
-fx-opacity: 1;
}
.edge-label {
-fx-font: bolder 16pt "arial";
}
.arrow {
-fx-stroke-width: 4;
-fx-stroke: #ff0c00;
-fx-opacity: 1;
}
.selectedVertex {
-fx-stroke-width: 6;
-fx-stroke: #ff9000;
-fx-stroke-type: inside;
-fx-fill: #fad51d;
}
.highlightedVertex {
-fx-stroke-width: 6;
-fx-stroke: #800080;
-fx-stroke-type: inside;
-fx-fill: #FF1493;
}