-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (44 loc) · 948 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
body {
margin: 0;
padding: 0;
font-family: Helvetica;
}
.container {
display: flex;
}
h3 {
color: #888;
}
#score {
font-size: 7em;
font-family: Monospace;
}
/* SVG styles */
.node, circle {
stroke: black;
stroke-width: 0.1em;
}
.links {
stroke-width: 0.1em;
}
path.links {
fill: white;
}
</style>
</head>
<body>
<h1 id="gameseed"></h1>
<div id="container">
</div>
<div id="graph">
<svg width="1000" height="2000">
</svg>
</div>
<script src="./sympathy_for_machines.js"></script>
</body>
</html>