-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfll-timer.html
More file actions
43 lines (34 loc) · 1.18 KB
/
fll-timer.html
File metadata and controls
43 lines (34 loc) · 1.18 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>FLL Timer</title>
<link rel="stylesheet" href="css/fll-timer.css">
</head>
<body>
<div class="vspace"></div>
<div id="header">
<div></div>
<div><img style="max-height:110%; margin-top: -10px;" src="images/FIRSTLego_iconHorz_RGB.png"></div>
<!-- logo has less weight than FLL logo, so make it a bit bigger -->
<div><img style="max-height:210%; margin-top: -50px" src="images/Unearthed_Logo.png"></div>
</div>
<div class="vspace"></div>
<div>
<div id="timer"></div>
</div>
<div class="vspace"></div>
<div id="footer">
<img id="sponsor-image" style="height: 130%;" src="images/sponsor_image.svg">
</div>
<div class="vspace"></div>
<div class="controls">
<button id="start-button">Start</button>
<!-- <button id="reset-button">Reset</button> -->
<button id="customize-button">Customize</button>
<input type="text" id="customize-input" placeholder="2:30" style="visibility: hidden;">
</div>
<script src="js/howler.min.js"></script>
<script src="js/fll-timer.js"></script>
</body>
</html>