-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
66 lines (58 loc) · 1.93 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
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html >
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>InSightful</title>
<link rel="stylesheet" href="./popup.css">
</head>
<body class="popup">
<div class="title">
<h1>InSightful</h1>
</div>
<h3>Dark Mode</h3>
<div class="dark-button">
<div class="row" id="darkOn">On</div>
<div class="row" id="darkOff">Off</div>
<div class="circle"></div>
</div>
<div class="font-dropdown">
<details role="list">
<summary aria-haspopup="listbox">Font Styles</summary>
<ul role="listbox">
<li>
<input type="radio" id="changeFontArialRadio" font="Arial" name="size">
Visual Impairment (Arial)
</li>
<li>
<input type="radio" id="changeFontVerdanaRadio" font="Verdana" name="size">
Dyslexia (Courier)
</li>
<li>
<input type="radio" id="changeFontHelveticaRadio" font="Helvetica" name="size">
Readibility (Helvetica)
</li>
</ul>
</details>
</div>
<div class="control-group">
<button id="textDown">Down</button>
<h3>Text</h3>
<button id="textUp">Up</button>
</div>
<div class="control-group">
<button id="textReset">Reset</button>
</div>
<div class="control-group">
<button id="brightnessDown">Down</button>
<h3>Brightness</h3>
<button id="brightnessUp">Up</button>
</div>
<div class="control-group">
<button id="contrastDown">Down</button>
<h3>Contrast</h3>
<button id="contrastUp">Up</button>
</div>
</body>
<script src="scripts/btnEventListener.js"></script>
</html>