-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 1.4 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
<html>
<head>
<title>Speedrun Timer</title>
<link rel="stylesheet" href="timer.css"/>
<link rel="stylesheet" href="https://storage.googleapis.com/code.getmdl.io/1.0.0/material.indigo-pink.min.css">
<script src="https://storage.googleapis.com/code.getmdl.io/1.0.0/material.min.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<script type="text/javascript" src="config.js"></script>
<script type="text/javascript" src="timer.js"></script>
</head>
<body>
<div class="container">
<div class="mdl-card mdl-shadow--2dp demo-card-square">
<div class="mdl-card__title mdl-card--expand">
<h2 class="mdl-card__title-text"><div id="sessionName"></div></h2>
</div>
<div class="table_container">
<table class="mdl-data-table mdl-js-data-table mdl-data-table--selectable mdl-shadow--2dp" id="past_times">
</table>
</div>
<div class="mdl-card__supporting-text" id="timer">00:00:00</div>
<div class="mdl-card__actions mdl-card--border">
<button id="startButton" type="button" onclick="start()" class="mdl-button mdl-js-button mdl-button--raised mdl-button--accent mdl-js-ripple-effect">Start Timer</button>
<button id="stepButton" type="button" onclick="set_step()" class="mdl-button mdl-js-button mdl-button--raised mdl-button--accent mdl-js-ripple-effect">Set Step</button>
</div>
</div>
<div id="iframe">
</div>
</div>
</body>
</html>