-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathindex.html
More file actions
242 lines (211 loc) · 6.7 KB
/
Copy pathindex.html
File metadata and controls
242 lines (211 loc) · 6.7 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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
<!-- Copyright (c) 2026. Jericho Crosby (Chalwk) -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0, user-scalable=yes" name="viewport">
<meta
content="SPCLib - The largest public archive of Lua scripts and resources for SAPP, Phasor, and Chimera for Halo PC/Custom Edition."
name="description">
<title>SPCLib · Home</title>
<link href="assets/css/core.css" rel="stylesheet">
<style>
body {
background: radial-gradient(circle at 10% 20%, #0a0f1a, #05090f);
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
padding: 2rem;
}
.minimal-card {
max-width: 750px;
background: rgba(18, 25, 40, 0.75);
backdrop-filter: blur(8px);
border-radius: 48px;
border: 1px solid #2c3f5c;
padding: 2rem 2rem 2.2rem;
text-align: center;
box-shadow: 0 20px 35px rgba(0, 0, 0, 0.4);
}
.logo-wrap {
width: 150px;
height: 150px;
border-radius: 25%;
overflow: hidden;
background: #101624;
border: 1px solid #3b5a8c;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1rem auto;
box-sizing: border-box;
}
.logo-img {
width: 145px;
height: 145px;
border-radius: 25%;
object-fit: cover;
display: block;
}
h1 {
font-size: 2.2rem;
font-weight: 700;
background: linear-gradient(135deg, #e0efff, #8ab3ff);
background-clip: text;
-webkit-background-clip: text;
color: transparent;
margin: 0.2rem 0 0.5rem;
letter-spacing: -0.5px;
}
.badge-strip {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0.8rem;
margin: 0.5rem 0 1.8rem 0;
}
.badge-link {
background: #1a2338;
border-radius: 40px;
padding: 5px 16px;
font-size: 0.75rem;
font-weight: 500;
text-decoration: none;
color: #bbd4ff;
border: 1px solid #2f3e5c;
transition: 0.15s;
}
.badge-link:hover {
background: #2a3958;
color: white;
}
.tools-heading {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
font-size: 1.1rem;
font-weight: 600;
color: #c9e0ff;
margin: 1.5rem 0 1rem 0;
letter-spacing: -0.2px;
}
.tools-heading:before,
.tools-heading:after {
content: "";
flex: 1;
height: 1px;
background: linear-gradient(90deg, transparent, #3f5a7c, transparent);
}
.tools-heading:before {
margin-right: 12px;
}
.tools-heading:after {
margin-left: 12px;
}
.tool-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0.7rem;
margin: 0.75rem 0 0.5rem;
}
.tool-pill {
background: #111a2c;
border-radius: 40px;
padding: 0.5rem 1.2rem;
font-size: 0.8rem;
font-weight: 500;
text-decoration: none;
color: #cde2ff;
border: 1px solid #2f456a;
transition: all 0.2s ease;
display: inline-flex;
align-items: center;
gap: 6px;
backdrop-filter: blur(2px);
}
.tool-pill:hover {
background: #1f2f52;
border-color: #7b9ad4;
color: white;
transform: translateY(-1px);
}
.tool-pill.script-main {
background: #1a6d3b;
border-color: #6ae2a0;
color: #ffffff;
box-shadow: 0 0 10px rgba(70, 230, 120, 0.5), 0 2px 4px rgba(0, 0, 0, 0.2);
font-weight: 700;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
.tool-pill.script-main:hover {
background: #2c8e52;
border-color: #a0f0c0;
box-shadow: 0 0 14px rgba(80, 240, 130, 0.7);
transform: translateY(-2px);
}
.tool-pill.java-tool {
background: #1e2a3a;
border-color: #5f6f8a;
}
.hr-light {
border-color: #2f3e5c;
margin: 1.2rem 0 0.8rem;
}
.footer-note {
font-size: 0.7rem;
color: #7b95bf;
margin-top: 1rem;
}
@media (max-width: 550px) {
.minimal-card {
padding: 1.5rem;
}
h1 {
font-size: 1.8rem;
}
.tool-pill {
padding: 0.4rem 1rem;
font-size: 0.7rem;
}
}
</style>
</head>
<body>
<div class="minimal-card">
<div class="logo-wrap">
<img alt="SPCLib Logo" class="logo-img" src="assets/images/logo.jpg">
</div>
<h1>SPCLib</h1>
<div class="badge-strip">
<a class="badge-link" href="mailto:chalwk.dev@gmail.com">📧 chalwk.dev@gmail.com</a>
<a class="badge-link" href="https://discord.gg/D76H7RVPC9" rel="noopener" target="_blank">💬 Discord</a>
<a class="badge-link" href="https://chalwk.github.io/" rel="noopener" target="_blank">🌐 Chalwk's Personal
Website</a>
</div>
<div class="tools-heading"><span>Web Tools</span></div>
<div class="tool-grid">
<a class="tool-pill script-main" href="tools/script-browser.html" rel="noopener" target="_blank">
★ Script Browser
</a>
<a class="tool-pill" href="tools/hash-checker.html" rel="noopener" target="_blank">
CD Key Hash Checker
</a>
</div>
<div class="tools-heading">
<span>External Apps</span>
</div>
<div class="tool-grid">
<a class="tool-pill java-tool" href="https://github.com/Chalwk/HaloDiscordBot" rel="noopener"
target="_blank">
HaloDiscordBot (Java App)
</a>
</div>
<hr class="hr-light">
<div class="footer-note">© 2026 Jericho Crosby (Chalwk) · SPCLib</div>
</div>
</body>
</html>