-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
44 lines (36 loc) · 1.29 KB
/
popup.html
File metadata and controls
44 lines (36 loc) · 1.29 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="popup.css">
</head>
<body>
<center><h1>Citius Vide</h1></center>
<div class="switch-container">
<input type="checkbox" id="toggleSwitch">
<button id="refreshButton" class="refresh-btn"></button>
</div>
<div class="divider"></div>
<div class="switch-container">
<label for="colorOverrideSwitch" class="small-switch-label">Color Override:</label>
<label class="small-switch">
<input type="checkbox" id="colorOverrideSwitch">
<span class="small-slider"></span>
</label>
</div>
<div class="switch-container">
<span id="colorValue">#5684E1</span>
<input type="color" id="colorPicker" value="#5684E1">
</div>
<div class="divider"></div>
<div class="slider-container">
<label for="fixationPointSlider" class="fixation-point-label">Fixation Point:</label>
<div class="slider-wrapper">
<input type="range" id="fixationPointSlider" min="1" max="5" step="1" value="3">
<span id="sliderValue">3</span>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>