-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
options.html
49 lines (38 loc) · 1.61 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
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="stylesheet" href="options.css">
</head>
<body>
<div class="content">
<img src="assets/github1s.png" 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="buttonTitleCategorie">
<h1 class="title is-6">Button title :</h1>
<input type="text" id="buttonTitle" class="input" placeholder="View on Github1s">
</div>
<div id="openInNewPageCategorie" >
<input type="checkbox" id="openInNewPage">
Open the Github1s view in a new page
</div>
<div id="adaptToThemeCategorie" >
<input type="checkbox" id="adaptToTheme">
Adapt color to your github theme (light or dark mode)
</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>