-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
71 lines (63 loc) · 2.21 KB
/
404.html
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>(404) The page you were looking for doesn't exist.</title>
<style type="text/css">
html,
body {
margin: 0;
padding: 0;
height: 100%;
}
body {
font-family: "Whitney SSm A", "Whitney SSm B", "Helvetica Neue", Helvetica, Arial, Sans-Serif;
background-color: #00923f;
color: #f8f9fa;
-moz-font-smoothing: antialiased;
-webkit-font-smoothing: antialiased;
}
.error-container {
text-align: center;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center; /* This centers the content vertically */
}
.error-content {
text-align: center;
}
.error-container h1 {
margin: 0;
font-size: 100px;
font-weight: 300;
}
@media (min-width: 768px) {
.error-container h1 {
font-size: 75px;
}
}
.return a {
padding-bottom: 1px;
color: #f8f9fa;
text-decoration: none;
border-bottom: 1px solid rgba(255, 255, 255, 0.6);
-webkit-transition: border-color 0.1s ease-in;
transition: border-color 0.1s ease-in;
}
.return a:hover {
border-bottom-color: #f8f9fa;
}
</style>
</head>
<body>
<div class="error-container">
<div class="error-content">
<h1>404</h1>
<h2>But don't worry!</h2>
<p class="return">The URL you followed is probably outdated, but the content is still online. This is because I never delete content, but I do sometimes restructure the website. Therefore, please go to <a href="https://schmidtpaul.github.io/dsfair_quarto/">the main page</a> and try finding the chapter you are looking for by navigating the menu at the top.</p>
</div>
<p class="return">Take me back to the main page: <a href="https://schmidtpaul.github.io/dsfair_quarto/">https://schmidtpaul.github.io/dsfair_quarto/</a></p>
</div>
</body>
</html>