-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcredits.html
More file actions
179 lines (166 loc) · 4.5 KB
/
credits.html
File metadata and controls
179 lines (166 loc) · 4.5 KB
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
175
176
177
178
179
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>credits</title>
<style>
body {
background-color: #0e0e0e;
color: #dcdcdc;
font-family: monospace;
margin: 0;
padding: 28px;
line-height: 1.7;
font-size: 17px;
}
.container {
max-width: 540px;
margin: 0 auto;
}
img {
max-width: 120px;
height: auto;
display: block;
margin-bottom: 18px;
opacity: 0.8;
filter: grayscale(100%);
}
h1 {
font-size: 1.4rem;
font-weight: normal;
letter-spacing: 0.06em;
margin: 0 0 1.2em 0;
text-transform: lowercase;
}
p {
margin: 0 0 1em 0;
opacity: 0.88;
}
.small {
font-size: 0.95em;
opacity: 0.65;
}
a {
color: #dcdcdc;
text-decoration: none;
border-bottom: 1px dotted #444;
}
a:hover {
opacity: 0.7;
}
.back-link {
display: inline-block;
margin-top: 2em;
padding: 8px 16px;
background: #1a1a1a;
border: 1px solid #2a2a2a;
border-radius: 2px;
text-decoration: none;
border-bottom: none;
}
.back-link:hover {
background: #222;
opacity: 1;
}
</style>
</head>
<body>
<div class="container">
<h1>credits</h1>
<p>hosted by cloudflare pages, and code is at github!</p>
<p>songs:</p>
<ul style="margin: 0 0 1.5em 0; padding-left: 1.5em; opacity: 0.88;">
<li>Toby Fox - WELCOME TO THE CITY</li>
<li>leon chang - wavelocity</li>
<li>Squee - Summer</li>
<li>and Beethoven and Chopin for the fire songs made in 1830 🔥🔥🔥</li>
</ul>
<p class="small" style="margin-bottom: 1.5em;">all music is property of their respective owners. no copyright infringement intended. slow down lawyers</p>
<p>
<a href="https://github.com/auth1ery/fantastic-octo-waffle">fow (octo)</a> for the blog system
</p>
<p>
special thanks to sols RNG for inspiration. horrible game but, its the
inspiration that counts. right? heh. heh. heh... right? man im so bad at pulling off jokes
</p>
<p>
open source imports:
<ul>
<li><a href="https://dixonandmoe.com/rellax/">rellax.js</a></li>
<li><a href="https://instant.page">instant.page</a></li>
</ul>
</p>
<h1>contributors:</h1>
<div id="contributors"></div>
<style>
#contributors{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(120px,1fr));
gap:8px;
font-family:system-ui,-apple-system,Segoe UI,Roboto,monospace;
}
.contributor{
display:flex;
align-items:center;
gap:8px;
padding:8px;
background:#0a0a0a;
border:1px solid #1a1a1a;
border-radius:6px;
color:#e5e5e5;
text-decoration:none;
transition:background .15s,border-color .15s;
}
.contributor:hover{
background:#111;
border-color:#2a2a2a;
}
.contributor img{
width:20px;
height:20px;
border-radius:50%;
}
.name{
flex:1;
font-size:12px;
overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;
}
.count{
font-size:11px;
color:#777;
}
</style>
<script>
(async () => {
const res = await fetch("https://api.github.com/repos/auth1ery/auths-RNG/contributors?per_page=100");
const users = await res.json();
const root = document.getElementById("contributors");
users.forEach(u => {
const a = document.createElement("a");
a.className = "contributor";
a.href = u.html_url;
a.target = "_blank";
a.innerHTML = `
<img src="${u.avatar_url}">
<span class="name">${u.login}</span>
<span class="count">${u.contributions}</span>
`;
root.appendChild(a);
});
})();
</script>
<br>
<p>
also special thanks to the community! i love you all mwah mwah
</p>
<p class="small"><a href="LICENSE.txt">MIT licensed</a> from version 5.8</p>
<p class="small">FULLY open source on <a href="https://github.com/auth1ery/auths-RNG">github</a>!</p>
<p class="small">made by auth and thanks for playing <3</p>
<p class="small">issues? email: auth24d(at)proton(dot)me - OR JOIN THE <a href="">nerimity server</a> AS AN ALTERNATIVE OPTION! or just open a github issue, theres so many ways you can report an issue</p>
<a href="/" class="back-link">← back to game</a>
</div>
</body>
</html>