feat(proj): init
This commit is contained in:
@@ -0,0 +1,262 @@
|
||||
<!doctype html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>502 — Дожить до ЗП</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600&family=Syne:wght@700;800&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<style>
|
||||
:root {
|
||||
color-scheme: dark;
|
||||
--bg0: #071510;
|
||||
--bg1: #0d2a1f;
|
||||
--ink: #e8f2ec;
|
||||
--muted: #9bb5a8;
|
||||
--accent: #3dd68c;
|
||||
--accent-dim: #1f8f5f;
|
||||
--line: rgba(232, 242, 236, 0.14);
|
||||
--font-display: "Syne", "Segoe UI", sans-serif;
|
||||
--font-body: "Manrope", "Segoe UI", sans-serif;
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: var(--font-body);
|
||||
color: var(--ink);
|
||||
background:
|
||||
radial-gradient(1100px 560px at 12% -8%, rgba(61, 214, 140, 0.2), transparent 55%),
|
||||
radial-gradient(800px 480px at 100% 0%, rgba(20, 90, 70, 0.4), transparent 52%),
|
||||
linear-gradient(160deg, var(--bg0), var(--bg1) 48%, #0a1c16 100%);
|
||||
background-attachment: fixed;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
padding: 2rem 1.25rem;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.scene {
|
||||
width: min(720px, 100%);
|
||||
text-align: center;
|
||||
position: relative;
|
||||
animation: rise 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
|
||||
}
|
||||
|
||||
.brand {
|
||||
margin: 0 0 1.6rem;
|
||||
font-family: var(--font-display);
|
||||
font-weight: 800;
|
||||
letter-spacing: -0.04em;
|
||||
font-size: clamp(1.2rem, 2.5vw, 1.45rem);
|
||||
color: var(--accent);
|
||||
}
|
||||
|
||||
.glow {
|
||||
position: absolute;
|
||||
inset: 18% 18% auto;
|
||||
height: 42%;
|
||||
background: radial-gradient(circle, rgba(61, 214, 140, 0.22), transparent 70%);
|
||||
filter: blur(8px);
|
||||
pointer-events: none;
|
||||
animation: pulse 4.5s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.code {
|
||||
margin: 0;
|
||||
font-family: var(--font-display);
|
||||
font-weight: 800;
|
||||
font-size: clamp(6.5rem, 22vw, 11rem);
|
||||
line-height: 0.85;
|
||||
letter-spacing: -0.08em;
|
||||
background: linear-gradient(180deg, #f3fff8 10%, #3dd68c 55%, #145c3d 100%);
|
||||
-webkit-background-clip: text;
|
||||
background-clip: text;
|
||||
color: transparent;
|
||||
text-shadow: 0 18px 60px rgba(61, 214, 140, 0.12);
|
||||
animation: float 5.5s ease-in-out infinite;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: 1.1rem 0 0.55rem;
|
||||
font-family: var(--font-display);
|
||||
font-size: clamp(1.6rem, 4vw, 2.35rem);
|
||||
letter-spacing: -0.045em;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.lead {
|
||||
margin: 0 auto;
|
||||
max-width: 28rem;
|
||||
color: var(--muted);
|
||||
line-height: 1.55;
|
||||
font-size: 1.02rem;
|
||||
}
|
||||
|
||||
.actions {
|
||||
margin-top: 1.8rem;
|
||||
display: flex;
|
||||
gap: 0.75rem;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 2.75rem;
|
||||
padding: 0.7rem 1.15rem;
|
||||
border-radius: 0.65rem;
|
||||
border: 1px solid transparent;
|
||||
font-weight: 600;
|
||||
transition: transform 180ms ease, filter 180ms ease, background 180ms ease;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background: linear-gradient(135deg, var(--accent-dim), #166b48);
|
||||
color: #f4fff9;
|
||||
}
|
||||
|
||||
.btn-ghost {
|
||||
background: rgba(7, 21, 16, 0.45);
|
||||
border-color: var(--line);
|
||||
color: var(--ink);
|
||||
}
|
||||
|
||||
.btn:hover {
|
||||
transform: translateY(-2px);
|
||||
filter: brightness(1.06);
|
||||
}
|
||||
|
||||
.hint {
|
||||
margin: 1.6rem 0 0;
|
||||
font-size: 0.85rem;
|
||||
color: color-mix(in srgb, var(--muted) 80%, transparent);
|
||||
letter-spacing: 0.02em;
|
||||
}
|
||||
|
||||
.orbit {
|
||||
position: absolute;
|
||||
width: 7px;
|
||||
height: 7px;
|
||||
border-radius: 50%;
|
||||
background: var(--accent);
|
||||
opacity: 0.55;
|
||||
top: 12%;
|
||||
left: 18%;
|
||||
animation: drift 7s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.orbit.b {
|
||||
width: 5px;
|
||||
height: 5px;
|
||||
top: 28%;
|
||||
left: auto;
|
||||
right: 16%;
|
||||
animation-delay: -2.2s;
|
||||
opacity: 0.35;
|
||||
}
|
||||
|
||||
.orbit.c {
|
||||
top: auto;
|
||||
bottom: 18%;
|
||||
left: 28%;
|
||||
animation-delay: -4s;
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
@keyframes rise {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(18px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes float {
|
||||
0%,
|
||||
100% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
50% {
|
||||
transform: translateY(-10px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes pulse {
|
||||
0%,
|
||||
100% {
|
||||
opacity: 0.55;
|
||||
transform: scale(1);
|
||||
}
|
||||
50% {
|
||||
opacity: 0.9;
|
||||
transform: scale(1.06);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes drift {
|
||||
0%,
|
||||
100% {
|
||||
transform: translate(0, 0);
|
||||
}
|
||||
50% {
|
||||
transform: translate(12px, -18px);
|
||||
}
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.scene,
|
||||
.code,
|
||||
.glow,
|
||||
.orbit,
|
||||
.btn {
|
||||
animation: none !important;
|
||||
transition: none !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<main class="scene">
|
||||
<span class="orbit" aria-hidden="true"></span>
|
||||
<span class="orbit b" aria-hidden="true"></span>
|
||||
<span class="orbit c" aria-hidden="true"></span>
|
||||
<div class="glow" aria-hidden="true"></div>
|
||||
|
||||
<p class="code" aria-label="Ошибка 502">502</p>
|
||||
<h1>Сервер не отвечает</h1>
|
||||
<p class="lead">
|
||||
Шлюз не смог достучаться до кабинета. Обычно это на минуту — обновите страницу.
|
||||
</p>
|
||||
|
||||
<div class="actions">
|
||||
<a class="btn btn-primary" href="javascript:location.reload()">Обновить</a>
|
||||
<a class="btn btn-ghost" href="/">На главную</a>
|
||||
</div>
|
||||
|
||||
<p class="hint">ошибка · плохой шлюз</p>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user