-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
40 lines (34 loc) · 855 Bytes
/
popup.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
<!DOCTYPE html>
<html>
<head>
<title>Workflow Timer</title>
<link rel="stylesheet" href="popup.css" />
</head>
<style type ="text/css">
body {
margin: 5px;
}
h1 {
font-size:17px;
text-align: center;
font-family: sans-serif;
color:rgb(107, 117, 114)
}
p {
font-size:44px;
text-align: center;
font-family: monospace;
}
</style>
<body>
<div style="min-width:100px;text-align:center;">
<h1>T I M E R</h1>
<p id="timer">01:00:00</p>
<div class="btn-group" id="btn-group">
<button class="btn1" id="startButton" onclick="timeStart()">Start</button>
<button class="btn2" id="stopButton" onclick="timereset()">X</button>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>