-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
54 lines (42 loc) · 2.24 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
49
50
51
52
53
<!DOCTYPE html>
<html lang="EN">
<head>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="HEmain.css">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script defer src="popup.js"></script>
<title>Balance™ Chrome Extension</title>
</head>
<body style="height:700px; width:270px; margin: 0px 0px 0px 0px; font-family: 'Noto Sans JP', sans-serif;">
<div class="header">
<h2>Balance™ Alarms</h2>
</div>
<u><h4>Our Recommendation:</h4></u>
<button id="btn" title="Set all reminders with default suggested values (30 min waterbreak, 1 hour screen breaks, poromodo setup, and 11pm sleep)">
Set all reminders with suggested values
</button>
<div id="exp">(hover over the button to see description)</div>
<u><h4 class="separate">Choose Your Intervals:</h4></u>
<button id="water_break">Set your Water Break interval (in min)</button>
<input type="number" id="waterNum" min="0.1" oninput="validity.valid||(value='');"><br>
<button id="screen_break">Set your Screen Break interval (in min)</button>
<input type="number" id="screenNum" min="0.1" oninput="validity.valid||(value='');"><br>
<button id="sleep_reminder">Set your Sleep Schedule (in 24hr time)</button>
<input type="number" id="sleepNum" min="0.1" oninput="validity.valid||(value='');"><br>
<u><h4 class="separate">Choose Your Study Method:</h4></u>
<button id="pomodoro_timer">Start a Pomodoro Method timer</button>
<u><h4 class="separate">Stop Method(s):</h4></u>
<button id="stopWater">Stop your Water Break reminders</button>
<button id="stopScreen">Stop your Screen Break reminders</button>
<button id="stopPomodoro">Stop your Pomodoro Method reminders</button>
<button id="stopSleepReminder">Stop your Sleep Schedule reminders</button>
<button id="stopAllReminders">Stop all reminders</button>
<div class="footer">
<h3>Created by @N.Y.#5628, @Healtone#9925, @cantfindname#4010, @AnonymousArmour71#9458; ©2022</h3>
</div>
</body>
</html>