-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
52 lines (46 loc) · 1.48 KB
/
options.html
File metadata and controls
52 lines (46 loc) · 1.48 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link href="styles/options.css" rel="stylesheet">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Options & Settings</title>
</head>
<body class="wrap">
<div class="grid">
<div class="unit whole center-on-mobiles">
<div class="heading">
<h1>Extension Boilerplate</h1>
<p class="lead">A foundation for creating cross-browser extensions</p>
</div>
</div>
</div>
<section class="content">
<div class="grid">
<div class="unit whole center-on-mobiles">
<div class="option">
<h5>Popup color</h5>
<div class="radio-group">
<label><input class="js-radio white" type="radio" name="radio" value="white">White</label>
<label><input class="js-radio beige" type="radio" name="radio" value="beige">Beige</label>
<label><input class="js-radio lavender" type="radio" name="radio" value="lavender">Lavender</label>
</div>
</div>
<div class="option">
<em class="text-muted">...display your extensions' options here...</em>
</div>
</div>
</div>
</section>
<footer class="main-footer">
<div class="grid">
<div class="unit whole center-on-mobiles">
<p class="text-center text-muted">
© Extension Boilerplate
</p>
</div>
</div>
</footer>
<script src="scripts/options.js"></script>
</body>
</html>