-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathoptions.html
40 lines (31 loc) · 1.25 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<title>My Test Extension Options</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.1/css/bulma.min.css">
<link rel="stylesheet" href="options.css">
</head>
<body>
<div class="content">
<img src="github1s.ico" width="200px">
<h1 class="title is-3">GITHUB1S EXTENSION OPTIONS</h1>
<div>
<h1 class="title is-6">Button background color :</h1>
<input id="backgroundColor" class="input" type="text" placeholder="#Color">
</div>
<div id="buttonBackgroundColorCategorie">
<h1 class="title is-6">Button text color :</h1>
<input id="textColor" class="input" type="text" placeholder="#Color">
</div>
<div id="openInNewPageCategorie" >
<input type="checkbox" id="openInNewPage">
Open the Github1s view in a new page
</div>
<div>
<div id="status"></div>
<button id="save" class="button is-success">Save options</button>
</div>
<script src="options.js"></script>
</div>
</body>
</html>