some test required
This commit is contained in:
22
public/notfound/404.html
Normal file
22
public/notfound/404.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>404 | Infinitum</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<link rel="stylesheet" href="style.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="most_outer_form_border">
|
||||
<div class="outer_form_border">
|
||||
<div class="form_border">
|
||||
<h1>Stránka Nebyla Nalezena</h1>
|
||||
<p>
|
||||
Omlouváme se, ale stránka kterou se snažíte načíst nebyla nalezena.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
37
public/notfound/style.css
Normal file
37
public/notfound/style.css
Normal file
@ -0,0 +1,37 @@
|
||||
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,200&family=Source+Code+Pro:wght@300&display=swap');
|
||||
|
||||
/*
|
||||
font-family: 'Source Code Pro', monospace;
|
||||
font-family: 'DM Sans', sans-serif;
|
||||
*/
|
||||
|
||||
body {
|
||||
background-image: linear-gradient(120deg, #fccb90 0%, #d57eeb 100%);
|
||||
}
|
||||
|
||||
.form_border {
|
||||
border: 1px solid rgb(92, 92, 92);
|
||||
border-radius: 7px;
|
||||
background-color: rgb(160, 161, 182);
|
||||
width: 550px;
|
||||
text-align: center;
|
||||
height: 200px;
|
||||
justify-content: space-around;
|
||||
line-height: 200%;
|
||||
font-family: 'DM Sans', sans-serif;
|
||||
font-size: larger;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.most_outer_form_border {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.outer_form_border {
|
||||
margin: auto;
|
||||
}
|
Reference in New Issue
Block a user