feat: initial

This commit is contained in:
Lain Iwakura 2026-05-19 22:36:24 +03:00
commit 90b46d44f1
Signed by: lain
GPG key ID: 8160466B2E8D1441
7 changed files with 227 additions and 0 deletions

21
web/index.html Normal file
View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>cultist.club</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Welcome home. Again.</h1>
<div class="links">
<a href="https://src.cultist.club">src</a>
<a href="ircs://irc.cultist.club:6697">irc</a>
</div>
<div class="uptime">
<marquee>{{uptime}}</marquee>
</div>
</div>
</body>
</html>

58
web/style.css Normal file
View file

@ -0,0 +1,58 @@
:root {
--bg: #0a0a0a;
--fg: #e0e0e0;
--muted: #888;
--border: #333;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: var(--bg);
color: var(--fg);
font-family: monospace;
}
.container {
text-align: center;
padding: 2rem;
}
h1 {
font-size: 1.4rem;
font-weight: normal;
letter-spacing: 0.05em;
}
.links {
margin-top: 1.5rem;
font-size: 0.85rem;
}
.links a {
margin: 0 0.5rem;
color: var(--muted);
}
.uptime {
margin-top: 2rem;
overflow: hidden;
max-width: 420px;
border: 1px solid var(--border);
padding: 0.3rem 0;
}
.uptime marquee {
font-size: 0.85rem;
color: var(--muted);
}