| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>Page not found</title>
- <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
- <style type="text/css">
- html {
- font-size: 125%;
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
- }
- @media (max-width: 800px) { html { font-size: 100%; } }
- @media (max-width: 600px) { html { font-size: 80%; } }
- body {
- margin: 0;
- font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
- color: #555;
- text-align: center;
- background: white;
- }
- div {
- position: absolute;
- top: 50%;
- left: 0;
- right: 0;
- margin-top: -5em;
- padding: 0 1em;
- }
- h1 {
- margin: 0;
- line-height: 1;
- font-size: 4em;
- font-weight: 200;
- color: #444;
- text-transform: uppercase;
- }
- p {
- margin: 1.5em 0 0;
- line-height: 1.8;
- font-weight: 300;
- }
- a, a:link, a:visited {
- color: #1e7ad3;
- text-decoration: none;
- }
- a:hover {
- color: #0d5cdd;
- text-decoration: underline;
- }
- </style>
- </head>
- <body>
- <div>
- <h1>Oops!</h1>
- <p>
- <strong>The page you were looking for doesn't exist.</strong><br>
- Go back to <a href="//devdocs.io">devdocs.io</a>.
- </p>
- </div>
- </body>
- </html>
|