-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathoptions.html
More file actions
54 lines (46 loc) · 1.96 KB
/
options.html
File metadata and controls
54 lines (46 loc) · 1.96 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
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nozo Settings</title>
<link rel="stylesheet" href="options.css">
</head>
<body>
<div class="container">
<header>
<img src="icons/icon48.png" alt="Nozo" class="logo">
<h1>Nozo Settings</h1>
</header>
<section class="setting-group">
<h2>Drop Zone Position</h2>
<p class="description">Choose where the drop zone appears when dragging links.</p>
<div class="radio-group">
<label class="radio-option">
<input type="radio" name="dropZonePosition" value="bottom-center" checked>
<span class="radio-label">Bottom Center</span>
<span class="default-badge">Default</span>
</label>
<label class="radio-option">
<input type="radio" name="dropZonePosition" value="bottom-left">
<span class="radio-label">Bottom Left</span>
</label>
<label class="radio-option">
<input type="radio" name="dropZonePosition" value="bottom-right">
<span class="radio-label">Bottom Right</span>
</label>
<label class="radio-option">
<input type="radio" name="dropZonePosition" value="top-center">
<span class="radio-label">Top Center</span>
</label>
<label class="radio-option">
<input type="radio" name="dropZonePosition" value="entire-window">
<span class="radio-label">Entire Window</span>
</label>
</div>
</section>
<div class="status" id="status"></div>
</div>
<script src="options.js"></script>
</body>
</html>