-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNOSCRIPT.main.html
More file actions
161 lines (143 loc) · 3.02 KB
/
Copy pathNOSCRIPT.main.html
File metadata and controls
161 lines (143 loc) · 3.02 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1"
/>
<meta name="robots" content="noindex" />
<title>NOSCRIPT: Javascript is necessary...</title>
<style>
:root {
--blue: #c08282;
--blue2: #2b92db;
--amber: #cc4c1e;
--bg: #ebebeb;
--text: #222;
--radius: 1rem;
}
* {
box-sizing: border-box;
font-family: 'Noto Sans', 'Segoe UI', 'Tahoma', sans-serif;
color: var(--text);
}
html,
body {
margin: 0;
padding: 0;
background: var(--bg);
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
/* box */
main {
background: #fff;
border-radius: var(--radius);
box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
max-width: 90vw;
width: 28rem;
padding: 1.5rem;
border: 0.1rem solid var(--blue);
}
h1 {
font-size: 1.5rem;
font-weight: 700;
color: #fff;
margin-bottom: 0.3rem;
text-align: left;
display: flex;
align-items: center;
gap: 0.5rem;
border-top-left-radius: var(--radius);
border-top-right-radius: var(--radius);
background: #845050;
padding: 0.5em 1em;
margin: 0 -1.1em;
margin-top: -1.1em;
}
h1 span {
margin: 0.2rem;
font-size: 1.8rem;
}
p {
margin: 0.2rem 0;
line-height: 1.4;
text-align: left;
}
.lang {
border-top: 1px solid rgba(0, 0, 0, 0.1);
margin-top: 1rem;
padding-top: 0.5rem;
font-size: 0.9rem;
}
.lang:first-of-type {
border-top: none;
}
.lang h2 {
color: var(--blue);
display: block;
margin-bottom: 0.2rem;
font-size: 0.9rem;
}
strong,
.lang strong {
color: var(--amber);
font-size: 1.05rem;
font-style: italic;
margin-left: 0.4em;
}
p span {
font-size: 1.3rem;
vertical-align: text-bottom;
}
@media (max-width: 600px) {
main {
width: 85vw;
padding: 1rem;
}
h1 {
font-size: 1.3rem;
}
}
</style>
</head>
<body>
<main>
<h1><span>⚠️</span>Problem / Problema / 问题</h1>
<div class="lang">
<h2>🇺🇸 English</h2>
<p>
<span>⚠️</span><strong>JavaScript is disabled.</strong
><br />
This prevents automatic redirection to your destination.
</p>
</div>
<div class="lang">
<h2>🇧🇷 Português</h2>
<p>
<span>⚠️</span><strong>O JavaScript está desativado.</strong
><br />
Isso impede o redirecionamento automático para o destino.
</p>
</div>
<div class="lang">
<h2>🇪🇸 Español</h2>
<p>
<span>⚠️</span
><strong>JavaScript está deshabilitado.</strong><br />
Esto impide la redirección automática al destino.
</p>
</div>
<div class="lang">
<h2>🇨🇳 中文(普通话)</h2>
<p>
<span>⚠️</span><strong>JavaScript 已被禁用。</strong><br />
这会阻止自动跳转到目标页面。
</p>
</div>
</main>
</body>
</html>