-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstalled.html
139 lines (132 loc) · 3.24 KB
/
installed.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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Radars! invited! ✨</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="icon" type="image/png" href="https://anoxle.github.io/exco/logo2.png">
<style>
body {
font-family: Arial, sans-serif;
background-color: #282A36;
color: #fff;
text-align: center;
overflow: hidden;
}
.container {
max-width: 90%;
margin: 20px auto;
padding: 20px;
border-radius: 10px;
background-color: #36393f;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
position: relative;
}
h1 {
font-size: 2.5em;
margin-bottom: 10px;
}
p {
font-size: 1.2em;
margin-bottom: 20px;
}
.button {
display: inline-block;
padding: 10px 20px;
margin-top: 20px;
font-size: 1.2em;
border: none;
border-radius: 5px;
background-color: #7289da;
color: #fff;
text-decoration: none;
cursor: pointer;
transition: background-color 0.3s;
}
.button:hover {
background-color: #4e5d94;
}
.sparkle {
position: absolute;
width: 10px;
height: 10px;
border-radius: 50%;
animation: sparkle 1s infinite;
}
.sparkle::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 10px;
height: 10px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.8);
transform: translate(-50%, -50%) scale(0);
animation: sparkle-fade 1s infinite;
}
@keyframes sparkle {
0% {
transform: translateY(0) scale(1);
}
50% {
transform: translateY(-20px) scale(1.5);
}
100% {
transform: translateY(-40px) scale(1);
}
}
@keyframes sparkle-fade {
0% {
transform: translate(-50%, -50%) scale(0);
opacity: 0;
}
50% {
transform: translate(-50%, -50%) scale(1.5);
opacity: 1;
}
100% {
transform: translate(-50%, -50%) scale(0);
opacity: 0;
}
}
@media (prefers-color-scheme: dark) {
body {
background-color: #1a1d23;
}
.container {
background-color: #2f3136;
}
}
.close-button {
position: absolute;
top: 10px;
right: 10px;
font-size: 1.5em;
color: #ccc;
cursor: pointer;
}
.close-button:hover {
color: #fff;
}
</style>
</head>
<body>
<div class="container">
<span class="close-button" onclick="closePage()">×</span>
<h1>Invited!</h1>
<p>Thank you for choosing Radars! You're now ready to enhance your ✨server experience✨</p>
<a href="https://anoxle.github.io/exco/quickinvite.html" class="button">Invite Again</a>
<div class="container" style="background-color: transparent; padding: 10px; margin-top: 20px;">
<h2>How to use</h2>
<p>Simply type / and click Radars' icon and use commands!</p>
</div>
</div>
<script>
function closePage() {
window.close();
}
</script>
</body>
</html>