-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
73 lines (64 loc) · 1.25 KB
/
popup.html
File metadata and controls
73 lines (64 loc) · 1.25 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>
<meta charset="UTF-8" />
<title>Report Site</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 10px;
width: 240px;
}
h3 {
margin: 0 0 8px;
font-size: 16px;
display: flex;
align-items: center;
justify-content: space-between;
}
#statusDot {
font-size: 18px;
vertical-align: middle;
}
button {
width: 100%;
padding: 10px;
background-color: #d9534f;
color: white;
border: none;
font-size: 16px;
cursor: pointer;
border-radius: 4px;
}
button:hover {
background-color: #c9302c;
}
#toast {
margin-top: 10px;
padding: 6px 10px;
background-color: #28a745;
color: white;
border-radius: 3px;
display: none;
text-align: center;
font-size: 14px;
}
#reportCount {
margin-top: 10px;
font-size: 14px;
color: #444;
text-align: center;
}
</style>
</head>
<body>
<h3>
Report Site
<span id="statusDot">🟢</span>
</h3>
<button id="reportBtn">📩 Report This Site</button>
<p id="reportCount"></p>
<div id="toast">Report Sent!</div>
<script src="popup.js"></script>
</body>
</html>