-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
91 lines (84 loc) · 2.35 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
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gold Sponsored by Kela.</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
body {
width: 480px;
height: 280px;
font-family: 'Orbitron', sans-serif;
margin: 0;
padding: 0;
color: #ffffff;
background-image: url("/background.jpg");
background-repeat: no-repeat;
background-size: cover;
display: flex;
align-items: center;
justify-content: center;
backdrop-filter: blur(10px);
}
h2, b {
color: #00ffc3;
text-shadow: 0 0 5px rgba(0, 255, 195, 0.7);
}
.popup-container {
background: rgba(255, 255, 255, 0.1);
border-radius: 15px;
padding: 20px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.18);
text-align: center;
width: 100%;
max-width: 400px;
}
button {
width: 90%;
padding: 15px;
margin: 10px 0;
border: none;
background: linear-gradient(45deg, #00ffc3, #0056b3);
color: #000;
font-size: 16px;
font-weight: bold;
border-radius: 10px;
cursor: pointer;
box-shadow: 0 4px 15px rgba(0, 255, 195, 0.4), 0 0 10px rgba(0, 86, 179, 0.4);
transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
button.active {
background: linear-gradient(45deg, #0056b3, #ff004c);
}
button:hover {
transform: translateY(-5px);
box-shadow: 0 6px 20px rgba(0, 255, 195, 0.6), 0 0 15px rgba(0, 86, 179, 0.6);
}
hr {
border: 0;
height: 1px;
background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
margin: 20px 0;
}
</style>
</head>
<body>
<div class="popup-container">
<hr>
<button id="toggleHighlight"></button>
<button id="toggleHide"></button>
<button id="toggleShoutbox"></button>
<hr>
<p>Versio: <span id="version">lllladattt(aa)nnnnn...</span></p>
<script src="info.js"></script>
<hr>
<i> by Anon's , Legion.</i>
<br><small>2024</small>
</div>
<script src="popup.js"></script>
</body>
</html>