-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (93 loc) · 3.19 KB
/
Copy pathindex.html
File metadata and controls
95 lines (93 loc) · 3.19 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<title>guide.arturx.art | Доступ через Telegram</title>
<meta name="robots" content="noindex, nofollow">
<!-- Fonts -->
<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=Geist:wght@400;500;600;700&family=Geist+Mono:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<style>
.gate-wrapper {
min-height: 100vh;
min-height: 100dvh; /* mobile browsers: exclude the URL bar so the lock card isn't pushed under it */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 2rem;
text-align: center;
}
.gate-terminal {
background: #0d1117;
border: 1px solid #30363d;
border-radius: 12px;
padding: 2.5rem 3rem;
max-width: 480px;
width: 100%;
box-shadow: 0 0 40px rgba(88, 166, 255, 0.08);
}
.gate-icon {
font-size: 3rem;
margin-bottom: 1rem;
}
.gate-title {
font-family: 'JetBrains Mono', monospace;
font-size: 1.1rem;
color: #58a6ff;
margin-bottom: 0.5rem;
}
.gate-subtitle {
color: #8b949e;
font-size: 0.95rem;
margin-bottom: 2rem;
line-height: 1.6;
}
.gate-btn {
display: inline-flex;
align-items: center;
gap: 0.6rem;
background: #2563eb;
color: #fff;
text-decoration: none;
padding: 0.8rem 1.8rem;
border-radius: 8px;
font-weight: 600;
font-size: 1rem;
transition: background 0.2s;
}
.gate-btn:hover {
background: #1d4ed8;
}
.gate-hint {
margin-top: 1.5rem;
font-size: 0.8rem;
color: #484f58;
font-family: 'JetBrains Mono', monospace;
}
@media (max-width: 480px) {
.gate-wrapper { padding: 1rem; }
.gate-terminal { padding: 1.75rem 1.25rem; }
}
</style>
</head>
<body>
<div class="gate-wrapper">
<div class="gate-terminal">
<div class="gate-icon">🔒</div>
<div class="gate-title">access denied</div>
<p class="gate-subtitle">
Материалы доступны только через Telegram-канал.<br>
Вступи в канал — там всё: гайды, скиллы, обновления.
</p>
<a class="gate-btn" href="https://t.me/+K0Dd9yQNr8wyZjZi">
<span>✈️</span> Вступить в канал
</a>
<div class="gate-hint">→ Telegram-канал [ИИмерсивный]</div>
</div>
</div>
</body>
</html>