-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
48 lines (46 loc) · 1.03 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
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<title>Set duration</title>
<style>
body {
overflow: hidden;
margin: 0px;
background: white;
}
div:first-child {
margin-top: 0px;
}
div {
cursor: pointer;
text-align: center;
padding: 4px 4px;
font-family: sans-serif;
font-size: 1.2em;
width: 150px;
background: #eeeeee;
border: 1px solid #c7c7c7;
border-collapse: collapse;
}
div:hover {
background: #dadada;
}
</style>
<script src="popup.js"></script>
</head>
<body>
<div id="d11">1 day</div>
<div id="d2">2 days</div>
<div id="d3">3 days</div>
<div id="w1">1 week</div>
<div id="w2">2 weeks</div>
<div id="m1">1 month</div>
<div id="m2">2 months</div>
<div id="m3">3 months</div>
<div id="m6">6 months</div>
<div id="y1">1 year</div>
<div id="y2">2 years</div>
<div id="y3">3 years</div>
<div id="y5">5 years</div>
</body>
</html>