-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
53 lines (47 loc) · 1.27 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
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
body {
text-align: center;
margin: auto;
background-color: rgb(28,27,34);
color: rgb(251,251,254);
font-size: 2.5em;
padding: 2em;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
textarea, input[type="text"] {
font-size: 1em;
margin: 0.2em;
}
button {
font-size: 1em;
margin: 0.2em;
}
.edit-container {
display: flex;
align-items: center;
justify-items: center;
padding: 0.5em;
margin: 0.5em;
border: 1px solid gray;
border-radius: 0.5em;
flex-wrap: wrap;
}
</style>
</head>
<body>
<form>
<div class="edit-container">
<label>New tag group:</label>
<input type="text" placeholder="example tag" id="key" >
<textarea placeholder="tag 1 tag 2" id="values"></textarea>
<button type="submit">Create</button>
</div>
</form>
<div id="parent"></div>
<script src="options.js" type="module"></script>
</body>
</html>