-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.html
More file actions
47 lines (43 loc) · 1.08 KB
/
popup.html
File metadata and controls
47 lines (43 loc) · 1.08 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
44
45
46
47
<!-- popup.html -->
<!DOCTYPE html>
<html>
<head>
<style>
html {
min-height: 5em;
min-width: 500px;
background: white;
border-radius: 5rem;
}
</style>
<link href="bootstrap.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="p-3" style="text-align: center">
<img src="logo.svg" width ="80px" style="animation: rotation 2s infinite linear;">
</div>
</div>
<div class="container" id="tasks">
</div>
<form>
<label for="minutes">Time in minutes:</label>
<input type="number" id="minutes">
<br/>
<label for="url">URL:</label>
<input type="text" id="url">
</form>
<div class="container pt-5 pb-3 px-4">
<button class="button-blue py-2" id="alarmOn" style="width: 100%">+</button>
<br>
<br>
<div class="light-grey round-border">
<!-- <div class="px-3 round-border" style="width:77%; background: darkseagreen; color: white">77%</div> -->
</div>
</div>
<script src="bootstrap.js"></script>
<script src="background.js"></script>
<script src="alarm.js"></script>
</body>
</html>