-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterms.html
174 lines (156 loc) · 3.52 KB
/
terms.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Radars! | Terms of Service</title>
<link rel="icon" href="https://anoxle.github.io/exco/icon.png" type="image/png">
<style>
body{
background-color:#282A36;
color:#fff;
font-family:Arial,sans-serif;
margin:0;
padding:0;
animation: fadein 2s;
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
.container{
max-width:800px;
margin:40px auto;
padding:20px;
background-color:#1A1D23;
border-radius:10px;
box-shadow:0 0 10px rgba(0,0,0,0.2);
animation: slidein 2s;
}
@keyframes slidein {
from { transform: translateY(-100px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}
h1{
font-size:24px;
margin-bottom:10px;
text-align:center;
animation: pulse 2s;
}
@keyframes pulse {
0% { transform: scale(0.9); }
100% { transform: scale(1); }
}
h1 span{
font-size:14px;
color:#fff;
margin-right:5px
}
h1 strong{
font-size:24px;
color:#fff;
text-shadow: 0 0 10px #ffd700;
}
h2{
font-size:18px;
margin-bottom:5px;
color:#44a0e6;
animation: fadein 2s;
}
ul{
list-style:none;
padding:0;
margin:0
}
li{
margin-bottom:10px;
color:#fff;
animation: fadein 2s;
}
li:before{
content:"\2022";
color:#44a0e6;
margin-right:10px
}
p{
color:#fff;
margin-bottom:20px;
animation: fadein 2s;
}
p.copyright{
font-size:14px;
color:#999;
text-align:center;
margin-top:20px;
animation: fadein 2s;
}
.header {
background-color: rgba(26, 29, 35, 0.8);
padding: 10px;
text-align: center;
position: fixed;
top: 0;
width: 100%;
z-index: 1;
animation: slidein 2s;
}
.header a {
color: #fff;
text-decoration: none;
margin: 0 10px;
transition: color 0.2s;
}
.header a:hover {
color: #44a0e6;
}
.header::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(26, 29, 35, 0.8);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.5s;
}
.header:hover::before {
transform: scaleX(1);
}
</style>
</head>
<body>
<div class="header">
<a href="https://anoxle.github.io/exco">Home</a>
<a href="https://anoxle.github.io/exco/terms">Terms</a>
<a href="https://anoxle.github.io/exco/privacy">Privacy</a>
<a href="https://anoxle.github.io/exco/invite">Invite</a>
</div>
<div class="container">
<h1><strong>Radars! <strong>Terms of Service</strong> 📝</strong></h1>
<h2>Terms of Service:</h2>
<ul>
<li>By using our bots, you agree to comply with the terms and any future updates that govern their use.</li>
</ul>
<h2>Conditions:</h2>
<ul>
<li>By adding Radars to your server, you agree to our terms and conditions, as well as any future amendments communicated via notice.</li>
</ul>
<h2>Terms of Use:</h2>
<ul>
<li>Follow <a href="https://anoxle.github.io/exco/rules">rules</a></li>
<li>Avoid engaging in command spamming or attempting to crash the bot.</li>
<li>Radars should not be used in servers that are affected by excessive command spam caused by bots.</li>
<li>The AnoxleTeam has the right to prohibit any server or user from using Radars.</li>
<li>Do not use Radars for illegal activities.</li>
<li>Users are accountable for any violations they commit.</li>
</ul>
<h2>Terms of Service Updates:</h2>
<ul>
<li>We have the right to update or change the terms of service at any time.</li>
</ul>
<p class="copyright">© <script>document.write(new Date().getFullYear());</script> Anoxle.git. All rights reserved.</p>
</div>
</body>
</html>