mirror of
https://git.ari.lt/ari.lt/ari.lt.git
synced 2025-02-04 17:49:24 +01:00
update @ Sun 5 Sep 03:43:16 EEST 2021
This commit is contained in:
parent
d777e258fc
commit
04cac43fb6
5 changed files with 99 additions and 0 deletions
BIN
content/img/404.png
Normal file
BIN
content/img/404.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 51 KiB |
30
content/styles/404/main.css
Normal file
30
content/styles/404/main.css
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
body,
|
||||||
|
html {
|
||||||
|
padding: 2.5em;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title404 {
|
||||||
|
text-align: center;
|
||||||
|
font-size: 3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content404 {
|
||||||
|
text-align: center;
|
||||||
|
font-size: 2.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c404img {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c404img img {
|
||||||
|
filter: opacity(25%) blur(10px);
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
margin: 2.5em;
|
||||||
|
}
|
33
content/styles/404/main.scss
Normal file
33
content/styles/404/main.scss
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
body,
|
||||||
|
html {
|
||||||
|
padding: 2.5em;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.title404 {
|
||||||
|
text-align: center;
|
||||||
|
font-size: 3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content404 {
|
||||||
|
text-align: center;
|
||||||
|
font-size: 2.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.c404img {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c404img img {
|
||||||
|
filter: opacity(25%) blur(10px);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
footer {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
margin: 2.5em;
|
||||||
|
}
|
5
netlify.toml
Normal file
5
netlify.toml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
[[redirects]]
|
||||||
|
from = "/*"
|
||||||
|
to = "/page/404"
|
||||||
|
status = 404
|
||||||
|
force = false
|
31
page/404/index.html
Normal file
31
page/404/index.html
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Ari::web -> 404</title>
|
||||||
|
|
||||||
|
<meta name="description" content="My personal website">
|
||||||
|
<meta name="keywords" content="website webdev linux programming ari terminal dark">
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="/content/styles/generic/main.css">
|
||||||
|
<link rel="stylesheet" href="/content/styles/404/main.css">
|
||||||
|
<script src="/content/js/404/index.js" defer></script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<h1 class="title404">404 ~ Not found</h1>
|
||||||
|
<p class="content404">The page you're looking for cannnot be found... Try <a href="/">the homepage</a> maybe?</p>
|
||||||
|
|
||||||
|
<div class="c404img">
|
||||||
|
<img src="/content/img/404.png" alt="404 :(">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
404 ~ Not found :(
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
Loading…
Add table
Reference in a new issue