| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>Error</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;
- height: 100vh;
- display: flex;
- align-items: center;
- justify-content: center;
- font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
- color: #555;
- text-align: center;
- background: white;
- }
- h1 {
- margin: 0;
- line-height: 1;
- font-size: 4em;
- font-weight: 200;
- color: #444;
- text-transform: uppercase;
- }
- p {
- margin: 1.5em 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>Something is technically wrong.</strong><br>
- Thanks for noticing—we're going to fix it up and have things back to normal soon.<br>
- Go back to <a href="//devdocs.io">devdocs.io</a>.
- </p>
- </div>
- </body>
- </html>
|