-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
73 lines (70 loc) · 2.56 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
<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title></title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
crossorigin="anonymous"
/>
<style>
body {
width: 24em;
height: 20em;
}
.roblox-green-switch {
background-color: #00b06f !important;
border: none !important;
}
</style>
</head>
<body>
<div class="container text-center">
<h1>RoAdditions Settings</h1>
<table class="table">
<th></th>
<tbody>
<tr>
<td>
<div class="form-check form-switch">
<input
class="roblox-green-switch form-check-input setting-switch"
type="checkbox"
role="switch"
setting="playbtn"
id="playbtn"
/>
<label class="form-label" for="playbtn"
>Enable play button under games</label
>
</div>
</td>
</tr>
<tr>
<td>
<a
name="customcss"
id="customcss"
class="btn btn-success"
href="http://www.nicolastech.xyz/style"
target="_blank"
rel="noreferrer noopener"
role="button"
>
Get It!
</a>
<label for="customcss">
Get custom roblox style
</label>
</td>
</tr>
</tbody>
</table>
</div>
<script src="bootstrap.bundle.min.js"></script>
<script src="jquery.js"></script>
<script src="popuphandle.js" defer></script>
</body>
</html>