-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwiki-status.html
More file actions
75 lines (75 loc) · 2.31 KB
/
wiki-status.html
File metadata and controls
75 lines (75 loc) · 2.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1, viewport-fit=cover" name="viewport"/>
<title>Wiki Status | HuxP</title>
<link href="/assets/icons/kickball-32.png?v=9" rel="icon" sizes="32x32" type="image/png"/>
<style>
:root{
--bg:#18142d;
--panel:#f8f4ff;
--panel-soft:#fffaff;
--border:#5d4ea1;
--ink:#1d1730;
--ink-soft:#5a5174;
--link:#5140b4;
--shadow:0 12px 28px rgba(21,16,48,.22);
}
*,*::before,*::after{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{
min-height:100vh;
font-family:"Verdana","Geneva",system-ui,-apple-system,sans-serif;
color:var(--ink);
background:
radial-gradient(circle at top left, rgba(135,104,255,.22), transparent 28%),
linear-gradient(rgba(24,20,45,.84),rgba(24,20,45,.9)),
url("/BACKGROUND.png") repeat;
}
main{
width:min(860px,calc(100% - 24px));
margin:20px auto;
padding:14px;
background:linear-gradient(180deg,rgba(255,255,255,.34),rgba(255,255,255,.16));
border:2px solid rgba(255,255,255,.28);
border-radius:28px;
backdrop-filter:blur(6px);
}
.card{
background:linear-gradient(180deg,var(--panel-soft),var(--panel));
border:2px solid var(--border);
border-radius:22px;
box-shadow:var(--shadow);
overflow:hidden;
}
.card h1{
margin:0;
padding:12px 16px;
font-size:20px;
font-family:"Fredoka","Verdana",sans-serif;
background:linear-gradient(90deg,#6958c7,#8a75e8 70%,#b8aef7);
color:#fff;
border-bottom:2px solid var(--border);
}
.content{padding:16px;}
p{margin:0 0 12px;line-height:1.65;font-size:13px;}
.small{font-size:11px;color:var(--ink-soft);}
a{color:var(--link);}
.notice{margin-top:12px;padding:10px 12px;background:#efe7ff;border:1px solid #cabff4;border-radius:16px;}
</style>
</head>
<body>
<main>
<section class="card">
<h1>Wiki Status</h1>
<div class="content">
<p>The HuxP wiki is currently unavailable.</p>
<p>At this point, it will most likely not return due to financial downsizing. For a wiki mainly maintained by one person, the cost and upkeep no longer make much sense.</p>
<div class="notice">Important information may be reorganized into simpler parts of the site over time instead.</div>
<p class="small" style="margin-top:12px;">Last updated: April 2026.</p>
</div>
</section>
</main>
</body>
</html>