cultist.club-website/web/style.css

73 lines
934 B
CSS
Raw Permalink Normal View History

2026-05-19 22:36:24 +03:00
:root {
2026-05-19 23:07:30 +03:00
--bg: #000000;
--fg: #ffffff;
2026-05-19 22:36:24 +03:00
--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);
}
2026-05-19 23:22:01 +03:00
.info {
margin-top: 1.5rem;
font-size: 0.85rem;
color: var(--muted);
line-height: 1.8;
}
.info p {
margin: 0;
}
.hl {
color: var(--fg);
}
2026-05-19 22:36:24 +03:00
.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);
}