-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.htm
55 lines (51 loc) · 1.29 KB
/
index.htm
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
50
51
52
53
54
55
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<style>
rect.bordered {
stroke: #E6E6E6;
stroke-width:2px;
}
rect.bin {
fill:wheat;
}
rect.box {
opacity:0.5;
}
rect.error {
stroke: #E60000;
stroke-width:4px;
}
#header{
background-image: url(santabanner.png);
background-repeat: no-repeat;
height:150px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#header>div{
float:right;
background: #fff;
opacity: 0.7;
}
.dataset-button {
display:block;
}
</style>
<script data-main="script/app" src="script/require.js"></script>
</head>
<body>
<div id="header">
<div id="dataset-picker">
</div>
<div><button id="play">RUN!</button></div>
<div id="score">
<div>Time spent: <span id="val-time"></span> ms.</div>
<div>Packed: <span id="val-packnr"></span> (<span id="val-packpt"></span> points)</div>
<div>Bins used: <span id="val-binnr"></span> (<span id="val-binpt"></span> points)</div>
<div>Total: <span id="val-totalpt"></span> points</div>
</div>
</div>
<div id="chart"></div>
</body>
</html>