-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpanel.html
59 lines (51 loc) · 1.38 KB
/
panel.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Svelcro</title>
<link rel="stylesheet" href="./dev-app/public/build/bundle.css">
<link rel='icon' type='image/png' href='/favicon.png'>
<link rel='stylesheet' href='./dev-app/public/global.css'>
<script src="https://d3js.org/d3.v7.min.js"></script>
</head>
<style> /* set the CSS */
.node circle {
fill: rgb(163, 163, 163);
stroke: #ff3e00;
stroke-width: 3px;
}
.node {
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
color: white;
}
.node text {
font: 14px sans-serif;
fill: white;
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.node--internal text {
fill: white;
font: 16px;
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.node--leaf text {
fill: white;
font: 16px;
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.link {
fill: none;
stroke: rgb(99, 99, 99);
stroke-width: 2px;
}
.x_label {
color: rgb(163, 163, 163);
fill: rgb(163, 163, 163);
}
</style>
<body>
<div class="analysis-output"></div>
<script src="./dev-app/public/build/bundle.js"></script>
</body>
</html>