1 |
canvas { |
2 |
background-color: none; /* Transparent background */ |
3 |
background-image: url('http://example.com/Test.png'); |
4 |
} |
5 |
|
6 |
tree { |
7 |
layout: rectangular; |
8 |
} |
9 |
|
10 |
#un6gt { /* Some unique node name */ |
11 |
font-family: arial, sans-serif; |
12 |
font-size: 8 mm; |
13 |
font-weight: bold; |
14 |
} |
15 |
|
16 |
node { |
17 |
font-size: abc(0.7em + metadataValue(currentNode, 'a:flowerSize', 'a:averageSize') * 0.01em); |
18 |
} |
19 |
|
20 |
*:terminal { /* This would reference terminal nodes, branches, labels, ... */ |
21 |
color: blue; |
22 |
} |
23 |
|
24 |
node:matches(:first-child, :last-child) { |
25 |
color: #FF0000; |
26 |
} |
27 |
|
28 |
text-label.baysianSupport { /* Example to reference labels by their ID. (Temporary, since label IDs will be removed from TG.) */ |
29 |
-biw-line-position: 25.6; |
30 |
} |
31 |
|
32 |
scale { |
33 |
visible : true; |
34 |
} |