-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
119 lines (104 loc) · 4.16 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap" rel="stylesheet" />
<link href="https://rawgit.com/ellekasai/twemoji-awesome/gh-pages/twemoji-awesome.css" rel="stylesheet" />
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.14.0/css/all.css"
integrity="sha384-VhBcF/php0Z/P5ZxlxaEx1GwqTQVIBu4G4giRWxTKOCjTxsPFETUDdVL5B6vYvOt" crossorigin="anonymous" />
<title>Anaxes' API</title>
<script src="assets/js/twitter.js"></script>
<script src="assets/js/premid.js"></script>
<script src="assets/js/lanyard.js"></script>
<script src="assets/js/pbot.js"></script>
</head>
<body
style="background-color: #0a0f16;background-image: url('https://images.wallpapersden.com/image/download/macos-12-monterey-stock-dark_bGxsaGiUmZqaraWkpJRmbmdlrWZlbWU.jpg');max-width: 700px;margin: auto;">
<strong>
<div class="content" style="color: #ffffff">
<h1><i class="twa twa-wave wave"></i> Hi there!</h1>
<p>Looks like you found Anaxes' API. Well, unfortunately its unavailable for public use <i
class="twa twa-cry"></i></p>
<p>If you are stuck, here is a list of the current endpoints...</p>
<p>
<i class="twa twa-open-file-folder"></i><br /> ╰ <a
href="https://api.anaxes.xyz/api/twitter.php"><span style="color: #1d9bf0"><i
class="fab fa-twitter"></i> Twitter - <span
id="tw_followers"></span></span></a><br /> ╰ <a
href="https://api.anaxes.xyz/api/premid.php"><span style="color: #7289DA"><i
class="fad fa-play"></i> PreMiD - <i class="fab fa-discord"></i> DscJobs <span
id="dsc_users"></span></span></a><br /> ╰ <a href="https://api.anaxes.xyz/api/lanyard.php"><span
style="color: #7289DA"><i class="fab fa-discord"></i> Lanyard - <span
id="lanyard_status"></span></span><br /> ╰ <a
href="https://api.anaxes.xyz/api/pbot.php"><span style="color: #00c8ff;"><i
class="fad fa-robot"></i> PBOT - <span id="pbot_stats"></span></span></a>
</p>
<p class="footer">
Created with a <i class="twa twa-computer"></i> & <i class="twa twa-growing-heart"></i> by
<a href="https://github.com/jwu56"><span
style="text-decoration: none; color: #1d9bf0">jwu56</span></a> for <a
href="https://anaxes.xyz"><span style="text-decoration: none; color: #1d9bf0">Anaxes</span></a>
</p>
</strong>
</div>
</body>
<style>
html {
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
"Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
"Noto Color Emoji";
}
.content {
padding: 1em;
}
.footer {
color: #ffffff;
}
a {
text-decoration: none;
}
.wave {
animation-name: wave-animation;
/* Refers to the name of your @keyframes element below */
animation-duration: 2.5s;
/* Change to speed up or slow down */
animation-iteration-count: infinite;
/* Never stop waving :) */
transform-origin: 70% 70%;
/* Pivot around the bottom-left palm */
display: inline-block;
}
@keyframes wave-animation {
0% {
transform: rotate(0deg);
}
10% {
transform: rotate(14deg);
}
/* The following five values can be played with to make the waving more or less extreme */
20% {
transform: rotate(-8deg);
}
30% {
transform: rotate(14deg);
}
40% {
transform: rotate(-4deg);
}
50% {
transform: rotate(10deg);
}
60% {
transform: rotate(0deg);
}
/* Reset for the last half to pause */
100% {
transform: rotate(0deg);
}
}
</style>
</html>