-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
47 lines (44 loc) · 1003 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<style>
body {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: #272822;
color: #f8f8f2;
}
.box > * + * {
margin-top: 14px;
}
.box label {
font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI,
Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji,
Segoe UI Symbol;
font-size: 16px;
display: block;
}
.box input {
font-size: 14px;
background-color: #272822;
color: #e6db74;
padding: 7px;
width: 320px;
border-radius: 7px;
}
</style>
</head>
<body>
<div class="box">
<label for="githubToken">Github Token</label>
<input
id="githubToken"
type="text"
placeholder="input github auth token"
/>
</div>
</body>
<script src="options.js"></script>
</html>