-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.html
More file actions
60 lines (51 loc) · 957 Bytes
/
settings.html
File metadata and controls
60 lines (51 loc) · 957 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Settings ⚙</title>
<link rel="stylesheet" href="style.css">
<style>
body {
background: #111;
color: white;
font-family: Arial;
padding: 40px;
}
.cloak-option {
background: #1a1a1a;
padding: 15px;
margin-bottom: 12px;
border-radius: 10px;
cursor: pointer;
display: flex;
align-items: center;
transition: 0.2s;
}
.cloak-option:hover {
background: #222;
}
.cloak-option img {
width: 24px;
height: 24px;
margin-right: 10px;
}
button {
padding: 10px 18px;
border: none;
border-radius: 10px;
cursor: pointer;
font-weight: bold;
color: white;
background: linear-gradient(90deg, #b784ff, #8b008b);
}
</style>
</head>
<body>
<h1>Settings ⚙</h1>
<a href="index.html">⬅ Back Home</a>
<h2>Tab Cloaking</h2>
<div id="cloakList"></div>
<button onclick="resetCloak()">Reset Cloak</button>
<script src="settings.js"></script>
</body>
</html>