-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
45 lines (42 loc) · 896 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
41
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>UoL Intro Skipper options</title>
<style>
body {
font: 110%/1.5 sans-serif;
padding: 0.5em;
}
label {
display: block;
width: max-content;
margin-bottom: 1em;
}
label:last-of-type {
margin-bottom: 0;
}
#time {
display: inline-block;
width: 6ex;
font: inherit;
border: none;
border-bottom: 1px solid #aaa;
text-align: right;
}
#enabled {
transform: scale(1.75);
}
</style>
</head>
<body>
<label>
Skip the first
<input type="number" id="time" />
seconds
</label>
<label><input type="checkbox" id="enabled" /> Enable</label>
<script src="storage.js"></script>
<script src="popup.js"></script>
</body>
</html>