404.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Page not found</title>
  6. <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
  7. <style type="text/css">
  8. html {
  9. font-size: 125%;
  10. -webkit-text-size-adjust: 100%;
  11. -ms-text-size-adjust: 100%;
  12. }
  13. @media (max-width: 800px) { html { font-size: 100%; } }
  14. @media (max-width: 600px) { html { font-size: 80%; } }
  15. body {
  16. margin: 0;
  17. height: 100vh;
  18. display: flex;
  19. align-items: center;
  20. justify-content: center;
  21. background: white;
  22. font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  23. color: #555;
  24. text-align: center;
  25. }
  26. h1 {
  27. margin: 0;
  28. line-height: 1;
  29. font-size: 4em;
  30. font-weight: 200;
  31. color: #444;
  32. text-transform: uppercase;
  33. }
  34. p {
  35. margin: 1.5em 0;
  36. line-height: 1.8;
  37. font-weight: 300;
  38. }
  39. a, a:link, a:visited {
  40. color: #1e7ad3;
  41. text-decoration: none;
  42. }
  43. a:hover {
  44. color: #0d5cdd;
  45. text-decoration: underline;
  46. }
  47. </style>
  48. </head>
  49. <body>
  50. <div>
  51. <h1>Oops!</h1>
  52. <p>
  53. <strong>The page you were looking for doesn't exist.</strong><br>
  54. Go back to <a href="//devdocs.io">devdocs.io</a>.
  55. </p>
  56. </div>
  57. </body>
  58. </html>