-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnodes.html
49 lines (47 loc) · 1.14 KB
/
nodes.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>pjodd : table of nodes</title>
<script type="text/javascript" src="d3.min.js"></script>
<script type="text/javascript" src="d3-queue.min.js"></script>
<link rel="icon" type="image/png" href="p.png">
<!-- <link type="text/css" rel="stylesheet" href="graph.css"/> -->
<style>
table {
white-space: nowrap;
border-collapse: collapse;
}
thead {
}
th {
font-weight: normal;
}
th:hover {
background-color: #aaa;
}
th, td {
border: 1px solid black;
padding: 0 3px 0 3px;
}
td.monospace {
font-family: monospace;
}
td.right {
text-align: right;
}
td.center {
text-align: center;
}
tr:nth-child(even) { background: #cbcbcb; }
tr:nth-child(odd) { background: #e0e0e0; }
</style>
</head>
<body>
<header>
</header>
<div id="table"></div>
<script type="text/javascript" src="nodes.js"></script>
</body>
</html>