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
| /* 다이어그램 */
| marker#licensing {
| fill: #535552;
| }
|
| marker#greenLicensing {
| fill: #1DDB16;
| }
|
| path.link {
| fill: none;
| stroke-width: 4px;
| }
|
| circle {
| stroke: #FFFF8F;
| stroke-width: 1.5px;
| }
|
| text {
| font: 12px 나눔고딕;
| pointer-events: none;
| }
|
| text.shadow {
| stroke: #fff;
| stroke-width: 3px;
| stroke-opacity: 0.8;
| }
|
| .linkBlue {
| stroke: #535552;
| stroke-width: 3px;
| fill: none;
| }
|
| .linkGreen {
| stroke: #1DDB16;
| }
|
|