-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
90 lines (90 loc) · 2.73 KB
/
Copy path404.html
File metadata and controls
90 lines (90 loc) · 2.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 | Gabi's Portfolio</title>
<link rel="icon" href="/favicon.png" type="image/png">
<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=Special+Gothic+Condensed+One&family=Special+Gothic+Expanded+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/assets/css/base.css">
<link rel="stylesheet" href="/assets/css/components.css">
<style>
body {
min-height: 100vh;
display: flex;
flex-direction: column;
}
.main {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.projects {
text-align: center;
}
.title-container {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 20px;
}
.title-container .line {
flex: 1;
height: 2px;
background: var(--primary);
}
.title-container h2 {
white-space: nowrap;
}
.back-link {
display: inline-block;
color: var(--primary);
text-decoration: none;
padding: 12px 24px;
border: 2px solid var(--primary);
margin-top: 20px;
}
.back-link:hover {
background: var(--primary);
color: var(--background);
}
footer {
text-align: center;
padding: 20px;
font-size: 14px;
display: flex;
align-items: center;
justify-content: center;
background-color: var(--background);
color: var(--primary);
}
footer .line {
flex: 1;
height: 2px;
background: var(--primary);
}
footer .gb {
margin: 0 10px;
font-size: 24px;
}
</style>
</head>
<body>
<div class="main">
<section class="projects">
<div class="title-container">
<hr class="line left">
<h2>Nothing Here</h2>
<hr class="line right">
</div>
<p>The path you followed leads nowhere.<br>Try heading back home.</p>
<a href="/" class="back-link">Back to Portfolio</a>
</section>
</div>
<footer><span class="line"></span><span class="gb">𝕲 // 𝕭</span><span class="line"></span></footer>
</body>
</html>