-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.css
More file actions
120 lines (105 loc) · 2.38 KB
/
404.css
File metadata and controls
120 lines (105 loc) · 2.38 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
:root {
--black: #000000;
--surface: #0a0a0a;
--text: #f5f5f5;
--text-secondary: rgba(255,255,255,0.6);
--accent: #f5c518;
--blue: #6eb3ff;
--border: rgba(255,255,255,0.08);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: var(--black);
color: var(--text);
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 24px;
text-align: center;
}
.container {
max-width: 500px;
}
.logo {
display: inline-flex;
align-items: center;
gap: 12px;
text-decoration: none;
color: inherit;
margin-bottom: 48px;
}
.logo-icon {
width: 40px;
height: 40px;
}
.logo-text {
font-weight: 700;
font-size: 18px;
letter-spacing: -0.3px;
}
.code {
font-size: 120px;
font-weight: 800;
letter-spacing: -4px;
line-height: 1;
background: linear-gradient(135deg, var(--text) 0%, var(--text-secondary) 50%, var(--accent) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 16px;
}
h1 {
font-size: 24px;
font-weight: 600;
margin-bottom: 12px;
}
p {
color: var(--text-secondary);
font-size: 16px;
line-height: 1.6;
margin-bottom: 32px;
}
.btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 14px 24px;
background: var(--text);
color: var(--black);
text-decoration: none;
font-size: 15px;
font-weight: 600;
border-radius: 12px;
transition: all 0.2s ease;
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(255,255,255,0.15);
}
.btn svg {
width: 18px;
height: 18px;
}
.links {
margin-top: 48px;
display: flex;
gap: 24px;
justify-content: center;
flex-wrap: wrap;
}
.links a {
color: var(--text-secondary);
text-decoration: none;
font-size: 14px;
transition: color 0.2s ease;
}
.links a:hover {
color: var(--text);
}