-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.html
More file actions
121 lines (90 loc) · 4.16 KB
/
settings.html
File metadata and controls
121 lines (90 loc) · 4.16 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/css2?family=Acme&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Bubblegum+Sans&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Bubblegum+Sans&display=swap" rel="stylesheet">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="The better unblocked games website." />
<meta name="keywords" content="front-end web developer, unblocked, games, google sites, unblocked games mom, ublocked, code, coding, programmer, development, javascript, jquery, bootstrap, sass, less, git" />
<meta name="author" content="3kh0" />
<meta content="3kh0" property="og:title" />
<meta content="The better unblocked games website." property="og:description" />
<meta content="/images/logo.png" property="og:image" />
<title>Settings | Aroria</title>
<link href="./images/logo.png" rel="icon" />
<link href="./css/index.css" rel="stylesheet" />
</head>
<body>
<nav style="width:100%">
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
<a href="settings.html">Settings</a>
</nav>
<br><br><br><br><br><br><br><br><br>
<center>
<div class="section-title" style="font-family: 'Acme', sans-serif; text-align: center; font-size:30px; align-items:center; color:lightpink">Tab Cloaking</div> <br><br>
<div class="buttons" style="border-radius:15px;">
<input style="border-radius:7.5px;border-color:orangered;font-family: 'Bubbler One', sans-serif; width:300px;font-size:12px; height: 25px;"id="title" class="input" placeholder=" Title" onkeyup="setTitle(this.value)" />
<br><br> <input style="border-radius:7.5px;border-color:blue;font-family: 'Bubbler One', sans-serif; width:250px;font-size:12px; height: 25px;" id="icon" class="input" placeholder=" Favicon" " onkeyup="setFavicon(this.value.trim())" />
</div>
<br>
<p class="section-text" style="font-family: 'Acme', sans-serif;">Or choose a readymade cloak:</p>
<div class="buttons" style="font-family: 'Acme', sans-serif;">
<select name="Readymade Cloaks" id="premadecloaks" title="Cloaks" style="font-family: 'Acme', sans-serif;font-size: 15px;">
<option value="search">Google Search</option>
<option value="drive">Google Drive</option>
<option value="youtube">YouTube</option>
<option value="gmail">Gmail</option>
<option value="calendar">Google Calendar</option>
<option value="meets">Google Meet</option>
<option value="classroom">Google Classroom</option>
<option value="canvas">Canvas</option>
<option value="zoom">Zoom</option>
<option value="khan">Khan Academy</option>
</select>
<button style="font-family: 'Acme', sans-serif; font-size:15px" class="button" onclick="setCloak()">Set readymade cloak</button>
<button style="font-family: 'Acme', sans-serif; font-size:15px" class="button" onclick="resetTab()">Reset</button>
</div>
</center>
<style>
/* Navbar styles */
body{
background-color:black ;
}
nav {
background-color: #black;
color: #fff;
padding: 10px;
display: flex;
justify-content:space-evenly ;
align-items: center;
position:fixed ;
top: 0;
width: 120%;
font-family: 'Fredoka One', cursive;
right: 4px;
}
nav a {
color: #fff;
text-decoration: none;
font-size: 20px;
padding: 10px;
margin-right: 100px;
margin-left: 100px;
}
</style>
<script src="./js/main.js.js"></script>
<script src="./js/index.js"></script>
<script src="./js/settings.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@widgetbot/crate@3" async defer>
new Crate({
server: '971769908205604864', // EchoDev
channel: '1017203047388160050', // #guest-chat
notifications: false,
})
</script>
</body>
</html>