-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
58 lines (53 loc) · 1.22 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
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: monospace;
font-size: 16px;
}
button {
height: 24px;
width: 80px;
color: #FFF;
background-color: #00bcd4;
border: none;
border-radius: 2px;
font-size: 16px;
font-family: monospace;
letter-spacing: 2px;
outline:0;
cursor: pointer;
}
button.show {
background-color: rgb(229, 229, 229);
color: rgb(127, 127, 127);
}
label {
width: 120px;
}
.container {
padding: 0 5px;
}
.row {
padding: 8px 0;
display: flex;
align-items: center;
}
</style>
</head>
<body>
<div class="container">
<h4>Options:</h4>
<div class="row">
<label for="btn-video">Video</label>
<button id="btn-video">HIDE</button>
</div>
<div class="row">
<label for="thumbnail">Thumbnail</label>
<button id="btn-thumbnail">HIDE</button>
</div>
</div>
<script src="dist/popup.js"></script>
</body>
</html>