-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (43 loc) · 866 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
<html lang=en>
<head>
<meta charset='utf-8'>
<script src="https://d3js.org/d3.v7.min.js"></script>
<script src="js/graph.js"></script>
<script src="js/index.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;500&display=swap" rel="stylesheet">
<style>
body {
background-color: #fafafa;
padding-top: 3rem;
}
svg {
background-color: #f0f0f0;
font-family: 'Noto Sans JP', sans-serif;
}
circle {
stroke: lightgray;
fill: darkgray;
}
.suptext {
fill: #6e6e6e;
font-weight: 500;
font-size: 15pt;
}
.subtext {
fill: #909090;
font-weight: 300;
font-size: 12pt;
}
.container {
width: 900px;
margin: auto;
}
</style>
</head>
<body>
<div class="container">
</div>
</body>
</html>