-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
70 lines (70 loc) · 1.52 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
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>URL Blocker</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 20px;
background-color: #282829;
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 200px;
}
.container {
background: rgb(63, 62, 62);
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
text-align: center;
width: 300px;
}
h1 {
margin-bottom: 20px;
color: #F1C40F;
font-size: 20px;
top: 10px;
left: 15px;
}
button {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
border: none;
border-radius: 5px;
color: white;
background-color: #007bff;
transition: background-color 0.3s ease;
margin-bottom: 20px;
width: 100%;
}
button:hover {
background-color: #0056b3;
}
.footer {
font-size: 12px;
color: #888;
}
.icon {
width: 48px;
height: 48px;
top: 10px;
left: 10px;
}
</style>
</head>
<body>
<div class="container">
<img src="icons/icon128.png" alt="Icon" class="icon">
<h1>URL Blocker</h1>
<div class="footer">
made with love ♥
</div>
</div>
</body>
</html>