Skip to content

Commit 50dfbaf

Browse files
add common header to match game
1 parent 0d744b8 commit 50dfbaf

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

web/match-game.html

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="UTF-8">
66
<link rel="icon" href="img/favicon.png" type="image/x-icon" />
77
<link rel="stylesheet" type="text/css" href="css/dc.graph.css"/>
8-
<link rel="stylesheet" type="text/css" href="css/dc.css"/>
8+
<link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
99
<link rel="stylesheet" type="text/css" href="css/jquery-ui.css"/>
1010

1111
<script type="text/javascript" src="js/d3.js"></script>
@@ -24,6 +24,12 @@
2424
<script type="text/javascript" src="js/querystring.js"></script>
2525

2626
<style>
27+
#main {
28+
position: absolute;
29+
left: 0; top: 0; right: 0; bottom: 0;
30+
display: flex;
31+
flex-direction: column;
32+
}
2733
#graph {
2834
position: absolute;
2935
left: 0;
@@ -41,6 +47,8 @@
4147
</head>
4248

4349
<body>
50+
<div id="main">
51+
<script type="text/javascript" src="js/example-header.js"></script>
4452

4553
<div id="resize" style="width: 400px; height: 400px; position: absolute; left: 100px; top: 100px">
4654
<div id="graph" class="chart"></div>

0 commit comments

Comments
 (0)