-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblokker.html
34 lines (33 loc) · 1.1 KB
/
blokker.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
<!doctype html>
<html>
<head>
<title>Blokker</title>
<script src="popup.js"></script>
</head>
<body>
<h1 style="margin-right: 18px; margin-left: 18px; margin-bottom: 12px; margin-top: 12px;">Blokker</h1>
<p style="margin-left: 18px; margin-right: 18px; margin-bottom: 12px;">Sites currently blocked:</p>
<p style="margin-left: 18px; margin-right: 18px; margin-bottom: 12px;">✅ Instagram</p>
<p style="margin-left: 18px; margin-right: 18px; margin-bottom: 12px;">More sites are coming soon. Stay tuned!</p>
<hr class="solid" style="background-color: rgba(220, 220, 200, 0.4); height: 1px; border: none;">
</body>
<footer>
<p style="margin-left: 18px; margin-right: 18px; margin-bottom: 12px; font-size: smaller;">Made by <a href="https://rtaneja.com" target="_blank" style="text-decoration: none;">Rohan Taneja</a></p>
</footer>
</html>
<style>
@media (prefers-color-scheme: dark) {
body {
background-color: #1B1A23;
color: white;
}
a {
color: aqua;
}
}
@media (prefers-color-scheme: light) {
a {
color: blue;
}
}
</style>