-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
86 lines (80 loc) · 6.93 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>QuietTube</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="/src/output.css">
</head>
<body class="w-[400px] h-[400px] bg-primary">
<div class="py-4 px-4 border-b border-b-[#FFFFFF] border-opacity-10">
<h3 class="text-white text-[18px] font-extrabold">QuietTube</h3>
<p class="text-white text-opacity-55">version 1.0.0</p>
</div>
<div class="py-8 px-4 border-b border-b-[#FFFFFF] border-opacity-10">
<p class="font-bold text-white">OPTIONS</p>
<div class="py-4 grid grid-cols-2 gap-y-4 gap-x-6">
<div class="flex flex-row items-center justify-start gap-x-2">
<!-- Enabled: "bg-indigo-600", Not Enabled: "bg-gray-200" -->
<button name="hide-notifications" type="button" class="options-selector bg-gray-200 relative inline-flex h-6 w-11 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none focus:ring-0" role="switch" aria-checked="false">
<!-- Enabled: "translate-x-5", Not Enabled: "translate-x-0" -->
<span aria-hidden="false" class=" translate-x-0 pointer-events-none inline-block h-5 w-5 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out"></span>
</button>
<p class="text-white">Hide Notification Bell</p>
</div>
<div class="flex flex-row items-center justify-start gap-x-2">
<!-- Enabled: "bg-secondary", Not Enabled: "bg-gray-200" -->
<button name="hide-feed" type="button" class=" options-selector bg-gray-200 relative inline-flex h-6 w-11 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none focus:ring-0" role="switch" aria-checked="false">
<!-- Enabled: "translate-x-5", Not Enabled: "translate-x-0" -->
<span aria-hidden="false" class="translate-x-0 pointer-events-none inline-block h-5 w-5 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out"></span>
</button>
<p class="text-white">Hide Feed</p>
</div>
<div class="flex flex-row items-center justify-start gap-x-2">
<!-- Enabled: "bg-secondary", Not Enabled: "bg-gray-200" -->
<button name="hide-side-panel" type="button" class=" options-selector bg-gray-200 relative inline-flex h-6 w-11 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none focus:ring-0" role="switch" aria-checked="false">
<!-- Enabled: "translate-x-5", Not Enabled: "translate-x-0" -->
<span aria-hidden="false" class="translate-x-0 pointer-events-none inline-block h-5 w-5 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out"></span>
</button>
<p class="text-white">Hide Side Panel</p>
</div>
<div class="flex flex-row items-center justify-start gap-x-2">
<!-- Enabled: "bg-secondary", Not Enabled: "bg-gray-200" -->
<button name="hide-tags" type="button" class=" options-selector bg-gray-200 relative inline-flex h-6 w-11 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none focus:ring-0" role="switch" aria-checked="false">
<!-- Enabled: "translate-x-5", Not Enabled: "translate-x-0" -->
<span aria-hidden="false" class="translate-x-0 pointer-events-none inline-block h-5 w-5 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out"></span>
</button>
<p class="text-white">Hide Tags</p>
</div>
<div class="flex flex-row items-center justify-start gap-x-2">
<!-- Enabled: "bg-secondary", Not Enabled: "bg-gray-200" -->
<button name="hide-recommended_videos" type="button" class=" options-selector bg-gray-200 relative inline-flex h-6 w-11 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none focus:ring-0" role="switch" aria-checked="false">
<!-- Enabled: "translate-x-5", Not Enabled: "translate-x-0" -->
<span aria-hidden="false" class="translate-x-0 pointer-events-none inline-block h-5 w-5 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out"></span>
</button>
<p class="text-white">Hide Recommended Videos</p>
</div>
<div class="flex flex-row items-center justify-start gap-x-2">
<!-- Enabled: "bg-secondary", Not Enabled: "bg-gray-200" -->
<button name="hide-comments" type="button" class=" options-selector bg-gray-200 relative inline-flex h-6 w-11 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none focus:ring-0" role="switch" aria-checked="false">
<!-- Enabled: "translate-x-5", Not Enabled: "translate-x-0" -->
<span aria-hidden="false" class="translate-x-0 pointer-events-none inline-block h-5 w-5 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out"></span>
</button>
<p class="text-white">Hide Comments</p>
</div>
<div class="flex flex-row items-center justify-start gap-x-2">
<!-- Enabled: "bg-secondary", Not Enabled: "bg-gray-200" -->
<button name="hide-description" type="button" class=" options-selector bg-gray-200 relative inline-flex h-6 w-11 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none focus:ring-0" role="switch" aria-checked="false">
<!-- Enabled: "translate-x-5", Not Enabled: "translate-x-0" -->
<span aria-hidden="false" class="translate-x-0 pointer-events-none inline-block h-5 w-5 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out"></span>
</button>
<p class="text-white">Hide Description</p>
</div>
</div>
</div>
</body>
<script src="popup.js"></script>
</html>