-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
executable file
·38 lines (37 loc) · 1.02 KB
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
body{ width: 250px; }
button {
background: none; border: 0px; color: #888; font-size: 15px; cursor: pointer;
}
button:focus{background-color:#D1EDC9;}
button.col {
height: 30px; width: 32%; outline: none;
}
button.full {
height: 30px; width: 100%; outline: none;
}
</style>
</head>
<body>
<p>Atividade: <span id="activity"></span></p>
<p>Iniciado em: <span id="started"></span></p>
<p>Finalizado em: <span id="finished"></span></p>
<p>Duração: <span id="duration"></span></p>
<div>
<button class="col" id="start">start</button>
<button class="col" id="stop">stop</button>
<button class="col" id="clean">clean</button>
</div>
<p><span id="message"></span></p>
<!-- desafio extra
<div>
<button class="full" id="history">ver histórico</button>
</div>
-->
<script src="popup.js" charset="utf-8"></script>
</body>
</html>