-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
73 lines (65 loc) · 1.48 KB
/
popup.html
File metadata and controls
73 lines (65 loc) · 1.48 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
<!DOCTYPE html>
<html>
<head>
<script src="./js/counter_popup.js"></script>
<style>
body {
color: black;
background-color: #944848;
}
#counter {
color: white;
}
.title {
display: block;
font-size: 2em;
font-weight: bold;
}
.description {
font-size: 1em;
font-weight: bold;
margin-bottom: 14%;
}
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted white;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 156px;
background-color: #602f2f;
color: #fff;
text-align: center;
border-radius: 6px;
margin-top: 7px;
padding: 3px 0;
position: absolute;
z-index: 1;
display: none;
/* Position the tooltip */
position: absolute;
z-index: 1;
}
.tooltip:hover .tooltiptext {
display: block;
visibility: visible;
}
</style>
</head>
<body>
<a href="https://github.com/Arisamiga/ADTerminator"
><img src="Logo.png" width="20px"
/></a>
<div class="title">ADTerminator</div>
<div class="description">Removes all Ads on a Google Search</div>
<h3>
Ads Removed:
<br>
<div class="tooltip">
<div id="counter"></div>
<span class="tooltiptext"><div id="types"></div></span>
</div>
</h3>
</body>
</html>