-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
193 lines (172 loc) · 4.76 KB
/
Copy pathindex.html
File metadata and controls
193 lines (172 loc) · 4.76 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StopCensor</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Unbounded:wght@700;900&family=Mulish:wght@300;400&display=swap" rel="stylesheet">
<style>
:root {
--bg: #f5f3ee;
--text: #1a1a1a;
--accent: #c0392b;
--muted: #666;
--border: #1a1a1a;
--card: #eae7e0;
}
@media (prefers-color-scheme: dark) {
:root {
--bg: #141414;
--text: #f0ede6;
--accent: #e74c3c;
--muted: #999;
--border: #f0ede6;
--card: #1e1e1e;
}
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
background-color: var(--bg);
color: var(--text);
font-family: 'Mulish', sans-serif;
font-weight: 300;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
padding: 48px 24px;
transition: background 0.3s, color 0.3s;
}
.container {
max-width: 720px;
margin: 0 auto;
width: 100%;
}
.label {
font-family: 'Unbounded', sans-serif;
font-size: 10px;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 32px;
display: flex;
align-items: center;
gap: 12px;
}
.label::after {
content: '';
flex: 1;
height: 1px;
background: var(--accent);
opacity: 0.4;
}
h1 {
font-family: 'Unbounded', sans-serif;
font-size: clamp(2rem, 6vw, 3.8rem);
font-weight: 900;
line-height: 1.1;
letter-spacing: -0.02em;
margin-bottom: 40px;
}
h1 span {
color: var(--accent);
position: relative;
display: inline-block;
}
h1 span::after {
content: '';
position: absolute;
left: 0; right: 0; bottom: 4px;
height: 3px;
background: var(--accent);
opacity: 0.35;
}
.body-text {
font-size: clamp(1rem, 2.2vw, 1.15rem);
line-height: 1.85;
color: var(--text);
opacity: 0.88;
border-left: 3px solid var(--accent);
padding-left: 24px;
margin-bottom: 56px;
}
.question {
font-family: 'Unbounded', sans-serif;
font-size: clamp(0.85rem, 2vw, 1rem);
font-weight: 700;
line-height: 1.5;
margin-top: 24px;
color: var(--text);
}
.divider {
width: 100%;
height: 1px;
background: var(--border);
opacity: 0.12;
margin: 48px 0;
}
.wip {
background: var(--card);
border: 1px solid var(--border);
border-color: rgba(128,128,128,0.15);
padding: 24px 28px;
display: flex;
align-items: center;
gap: 20px;
}
.wip-dot {
width: 10px;
height: 10px;
border-radius: 50%;
background: var(--accent);
flex-shrink: 0;
animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.4; transform: scale(0.7); }
}
.wip p {
font-size: 0.88rem;
letter-spacing: 0.01em;
line-height: 1.6;
color: var(--muted);
}
.wip a {
color: var(--accent);
text-decoration: none;
font-weight: 400;
}
.wip a:hover { text-decoration: underline; }
.footer {
margin-top: 64px;
font-size: 0.72rem;
letter-spacing: 0.06em;
color: var(--muted);
opacity: 0.45;
text-transform: uppercase;
font-family: 'Unbounded', sans-serif;
}
</style>
</head>
<body>
<div class="container">
<div class="label">stopcensor.mrweez.dev</div>
<h1>Цензура<br>недопустима<br>в <span>21 веке</span></h1>
<div class="body-text">
Ограничение доступа в интернет — это недопустимо в 21 веке. Но правительство России считает, что блокировка сайтов, мессенджеров и запрет VPN — это способ защитить граждан от мошенников.
<div class="question">Вы уверены, что хотите видеть мир таким?</div>
</div>
<div class="divider"></div>
<div class="wip">
<div class="wip-dot"></div>
<p>
Полноценный сайт находится в разработке. Следите за обновлениями на
<a href="https://stopcensor.mrweez.dev">stopcensor.mrweez.dev</a>
</p>
</div>
<div class="footer">© stopcensor — mrweez.dev</div>
</div>
</body>
</html>