-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (80 loc) · 2.31 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Log Viewer</title>
<script src="script.js"></script>
<style>
.closeButton {
position: absolute;
right: 1%;
top: 9%;
}
.graphDiv {
position: relative;
}
body {
font-family: sans-serif;
font-size: 14px;
}
#dataSelector {
text-align: center;
}
#topSection {
position: fixed;
top: 0;
background-color: #fff;
z-index: 1;
height: 450px;
border-bottom: 3px #000 solid;
}
#content {
margin-top: 510px;
z-index: 3;
}
#overlayCanvas {
z-index: 2;
opacity: 0.3;
position: fixed;
top: 0;
pointer-events: none;
}
#topUI {
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
}
#logo {
text-align: right;
display: inline;
position: absolute;
right: 0;
top: 0;
padding-right: 10px;
padding-top: 6px;
font-size: 32px;
color: rgb(138, 138, 138);
}
</style>
<link href="normalize.css" rel="stylesheet">
</head>
<body>
<canvas id="overlayCanvas"></canvas>
<div id="topSection">
<div id="topUI">
<select id="matchSelect"></select>
<button id="resetZoom">Reset Zoom</button>
<div id="logo">Log Viewer</div>
</div>
<div id="topBar"><canvas id="topBarCanvas"></canvas></div>
<div id="spacetime" style="height: 400px; position: relative"></div>
</div>
<div id="content">
<div id="data"></div>
<div id="dataSelector">
<select id="seriesSelector"></select>
<button id="addSeriesButton">+</button>
</div>
</div>
</body>
</html>