-
Notifications
You must be signed in to change notification settings - Fork 26
/
popup.html
51 lines (44 loc) · 1.23 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script src="constants.js"></script>
<script src="popup.js"></script>
<style>
body {
width: 120px;
}
select, button {
padding: 5px 8px;
border: none;
width: 120px;
min-height: 25px;
border-radius: 3px;
background: #e73c64;
color: #ddd;
}
/* Remove black outline on Chrome */
select:focus-visible {
outline: none;
}
/* Color for selected item, only works on Chrome */
option:checked {
background: #b41e41;
}
.select-style:not(:last-child){
margin-bottom: 5px;
}
</style>
</head>
<body style="display: flex;flex-direction: column;">
<select name="" id="rajiko-region" class="select-style"></select>
<select name="" id="rajiko-area" class="select-style" ></select>
<button type="submit" id="rajiko-confirm" class="select-style"></button>
<button type="submit" id="rajiko-record" class="select-style" hidden></button>
<button type="submit" id="rajiko-download" class="select-style" hidden></button>
<!-- UI is too difficult to me -->
</body>
</html>