-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 805 Bytes
/
index.html
File metadata and controls
21 lines (21 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Graph Renderer Demo</title>
<style>
body, html { font-family: Roboto, sans-serif; margin: 0; padding: 0; height: 100%; width: 100%; display: flex; flex-direction: column; }
nav { padding: 12px 16px; background-color: #f8f9fa; border-bottom: 1px solid #ddd; }
nav a { margin-right: 20px; text-decoration: none; color: #0b57d0; font-size: 14px; }
nav a.active { font-weight: 500; border-bottom: 2px solid #0b57d0; padding-bottom: 4px;}
</style>
<script type="module" src="/graph_renderer_demo.ts"></script>
</head>
<body>
<nav>
<a class="active" href="index.html">Interactive Demo</a>
<a href="elk.html">ELK.js Static Layout Demo</a>
</nav>
<gr-graph-renderer-demo></gr-graph-renderer-demo>
</body>
</html>