-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
86 lines (86 loc) · 2.85 KB
/
404.html
File metadata and controls
86 lines (86 loc) · 2.85 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 | SkinDevX</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><rect width='100' height='100' rx='18' fill='%230d1117'/><text y='.85em' font-size='72' x='12'>💻</text></svg>">
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Inter:wght@400;600&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
background: #0d1117;
color: #e6edf3;
font-family: 'Inter', sans-serif;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 2rem;
}
.code {
font-family: 'JetBrains Mono', monospace;
font-size: clamp(6rem, 20vw, 12rem);
font-weight: 700;
color: #00f5d4;
line-height: 1;
margin-bottom: 1rem;
text-shadow: 0 0 60px rgba(0,245,212,.3);
}
.label {
font-family: 'JetBrains Mono', monospace;
color: #8b949e;
font-size: .85rem;
letter-spacing: .2em;
text-transform: uppercase;
margin-bottom: 1.5rem;
}
h1 { font-size: 1.5rem; font-weight: 600; margin-bottom: .75rem; }
p { color: #8b949e; font-size: 1rem; max-width: 400px; margin-bottom: 2.5rem; line-height: 1.7; }
.btn {
background: #00f5d4;
color: #0d1117;
padding: .75rem 2rem;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: .95rem;
transition: opacity .2s;
display: inline-flex;
align-items: center;
gap: .5rem;
}
.btn:hover { opacity: .85; }
.terminal {
font-family: 'JetBrains Mono', monospace;
font-size: .8rem;
color: #8b949e;
margin-top: 3rem;
background: #161b22;
border: 1px solid #30363d;
border-radius: 8px;
padding: 1rem 1.5rem;
text-align: left;
max-width: 380px;
}
.terminal span { color: #00f5d4; }
.blink { animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
</style>
</head>
<body>
<div class="code">404</div>
<div class="label">// PAGE_NOT_FOUND</div>
<h1>Página não encontrada</h1>
<p>Esta rota não existe. Talvez o link esteja quebrado ou a página foi movida.</p>
<a href="/" class="btn">⟵ Voltar ao início</a>
<div class="terminal">
<div><span>$</span> cd ~/skindevx.github.io</div>
<div><span>$</span> ls <span style="color:#e6edf3">404.html</span></div>
<div><span style="color:#f85149">Error:</span> route not found</div>
<div><span>$</span> redirect / <span class="blink">█</span></div>
</div>
</body>
</html>