-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
47 lines (43 loc) · 1.61 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="icon" href="images/eyeIcon.png" />
<title>Blink Alert</title>
</head>
<header>
<h3 class="title">Blink Alert</h3>
</header>
<body>
<div class="select-div">
<b>Select duration</b>
<div class="range-div">
<input type="range" id="durationSlider" min="1" max="6" step="1" value="1" />
</div>
<div class="select-main">
<button class="durationBtn durationBtn1" id="durationBtn1">20 min</button>
<button class="durationBtn durationBtn2" id="durationBtn2">1 hour</button>
<button class="durationBtn durationBtn3" id="durationBtn3">2 hours</button>
<button class="durationBtn durationBtn1" id="durationBtn4">3 hours</button>
<button class="durationBtn durationBtn2" id="durationBtn5">4 hour</button>
<button class="durationBtn durationBtn3" id="durationBtn6">5 hours</button>
</div>
</div>
<div class="modal">
<h6>20-20-20 RULE<h6>
<div class="rule">
Look away from your computer, look at something 20 feet away for 20 seconds.<br> -BLINK AS MANY TIMES AS YOU
CAN
</div>
</div>
<div class="settings">
<input type="checkbox" id="showAlertCheckbox" />
<label for="showAlertCheckbox">Show Alerts</label>
</div>
<script src="js/popup.js"></script>
</body>
</html>