Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 61 additions & 9 deletions 404.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,61 @@
---
layout: not_found
title: 404
permalink: /404.html
---
<div class="name">Alexander Gomzyakov</div>
<img src="{{site.baseurl}}/img/emojis/thinking-face.png" alt="">
<h1>Hmmm...</h1>
<h2>Looks like there's nothing here.<br>Maybe you should go back <a href="{{site.url}}">home</a>.</h2>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>404</title>
<style>
* {
margin: 0;
padding: 0;
font-family: system-ui, -apple-system, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
background-color: #212529;
color: #dee2e6;
}

#wrapper {
display: flex;
background-color: #212529 !important;
border: 1px #dee2e6 solid;
width: 80%;
height: 90vh;
margin: 5vh auto;
justify-content: center;
align-items: center;
vertical-align: middle;
border-radius: 25px;
}

#content {
text-align: center;
}

h1 {
font-size: 30vh;
line-height: 30vh;
}

h2 {
margin: 2vh 0;
}

h2,
p {
color: #a1a8ae;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="content">
<h1>404</h1>
<h2>Oops! Page not found</h2>
<p>Sorry, the page you're looking for doesn't exist.</p>
</div>
</div>
</body>
</html>