init commit
This commit is contained in:
110
404.html
Normal file
110
404.html
Normal file
@@ -0,0 +1,110 @@
|
||||
---
|
||||
title: 404
|
||||
exclude_from_nav: true
|
||||
---
|
||||
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>Error!</title>
|
||||
<style>
|
||||
html {
|
||||
font-size: 62.5%;
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-size: 100%;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
padding: 60px;
|
||||
background: #fafafa;
|
||||
font-size: 150%;
|
||||
font-family: Helvetica, Arial, sans-serif;
|
||||
font-weight: 300;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
#wrap {
|
||||
width: 100%;
|
||||
max-width: 700px;
|
||||
margin: 0 auto;
|
||||
padding: 30px;
|
||||
background: #fff;
|
||||
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
|
||||
border-radius: 3px;
|
||||
border-top: 3px solid #b00f08;
|
||||
}
|
||||
|
||||
hr {
|
||||
display: none;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 0 0 15px;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #731217;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #b00f08;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: 0 0 15px;
|
||||
font-size: 240%;
|
||||
font-weight: 300;
|
||||
color: #731217;
|
||||
}
|
||||
|
||||
.content {
|
||||
padding: 15px;
|
||||
margin: 15px 0;
|
||||
background: #eee;
|
||||
border: 1px solid rgba(0, 0, 0, 0.1);
|
||||
font-weight: bold;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
pre {
|
||||
overflow: auto;
|
||||
padding: 15px;
|
||||
background: #fafafa;
|
||||
border: 1px solid rgba(0, 0, 0, 0.1);
|
||||
line-height: 1.8;
|
||||
color: rgba(0, 0, 0, 0.8);
|
||||
}
|
||||
|
||||
pre.exception {
|
||||
background-color: #ffeded;
|
||||
}
|
||||
|
||||
pre em {
|
||||
font-style: normal;
|
||||
color: rgba(0, 0, 0, 0.5);
|
||||
border-bottom: 1px dotted;
|
||||
cursor: help;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="wrap">
|
||||
<h1>Error!</h1>
|
||||
<p>The requested url <script>
|
||||
document.write(window.location.pathname);
|
||||
</script> was not found.</p>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user