123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <link href="{{url_for('static', filename='img/favicon.ico')}}" rel="icon" />
- <title>Page Not Found :(</title>
- <style>
- body {
- text-align: center;
- }
- h1 {
- font-size: 50px;
- text-align: center;
- }
- span[frown] {
- transform: rotate(90deg);
- display: inline-block;
- color: #bbb;
- }
- body {
- font: 20px Constantia, "Hoefler Text", "Adobe Caslon Pro", Baskerville,
- Georgia, Times, serif;
- color: #999;
- text-shadow: 2px 2px 2px rgba(200, 200, 200, 0.5);
- }
- ::-moz-selection {
- background: #ff5e99;
- color: #fff;
- }
- ::selection {
- background: #ff5e99;
- color: #fff;
- }
- article {
- display: block;
- text-align: left;
- width: 500px;
- margin: 0 auto;
- }
- a {
- color: rgb(36, 109, 56);
- text-decoration: none;
- }
- a:hover {
- color: rgb(96, 73, 141);
- text-shadow: 2px 2px 2px rgba(36, 109, 56, 0.5);
- }
- </style>
- </head>
- <body>
- <article>
- <h1>Not found <span frown>:(</span></h1>
- <div>
- <p>Sorry, but the page you were trying to view does not exist.</p>
- <p>It looks like this was the result of either:</p>
- <ul>
- <li>a mistyped address</li>
- <li>an out-of-date link</li>
- </ul>
- <a href="/">Go to home page >></a>
- </div>
- </article>
- </body>
- </html>
|