-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
46 lines (44 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<title>Feel the bob</title>
<script src="popup.js"></script>
<style>
button {
box-sizing: border-box;
border: 0 solid #e2e8f0;
font-family: inherit;
font-size: 100%;
margin: 0;
overflow: visible;
text-transform: none;
background-image: none;
cursor: pointer;
line-height: inherit;
--bg-opacity: 1 !important;
background-color: rgba(66, 153, 225, var(--bg-opacity)) !important;
border-radius: 0.25rem !important;
font-weight: 700 !important;
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
padding-left: 1rem !important;
padding-right: 1rem !important;
--text-opacity: 1 !important;
color: rgba(255, 255, 255, var(--text-opacity)) !important;
}
button:hover {
background-color: rgba(43, 108, 176, var(--bg-opacity)) !important;
}
body {
padding: 15px;
width: 240px;
text-align: center;
}
</style>
</head>
<body>
<button id="btnDump" type="button">Grab links</button>
<button id="btnLaunch" type="button">Click links</button>
<p><img src="icon.png" /></p>
</body>
</html>