-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
75 lines (65 loc) · 1.13 KB
/
popup.html
File metadata and controls
75 lines (65 loc) · 1.13 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>BBB Echo Skip</title>
</head>
<body>
<div id="colorBar">
<h1 id="active">Echo Test Skipper is Always Enabled</h1>
<button id="toggle">Toggle</button>
</div>
<h2>Stealth Mode:</h2>
<button id="stealth"></button>
<h2>Background Color:</h2>
<input type="color" id="backgroundInput">
<style>
body {
min-width: 300px;
text-align: center;
margin: 0px;
padding: 0px;
}
h2 {
color: grey;
margin: 0px;
}
#active {
color: white;
position: relative;
top: 20px;
}
#colorBar {
height: 35vh;
margin-bottom: 20vh;
}
#toggle {
border: solid 5px grey;
width: 40vw;
height: 40vw;
border-radius: 25vw;
position: absolute;
left: 30vw;
top: calc(35vh - 20vw);
font-size: 18pt;
}
#stealth {
margin: 5vw;
border-radius: 5px;
border: none;
color: white;
background: #333;
padding: 5px;
font-size: 18px;
width: 90vw;
}
#backgroundInput {
width: 90vw;
background: #333;
border: none;
border-radius: 5px;
margin: 5vw;
}
</style>
<script src="popup.js"></script>
</body>
</html>