1
0

404.html 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  18. color: #555;
  19. text-align: center;
  20. background: white;
  21. }
  22. div {
  23. position: absolute;
  24. top: 50%;
  25. left: 0;
  26. right: 0;
  27. margin-top: -5em;
  28. padding: 0 1em;
  29. }
  30. h1 {
  31. margin: 0;
  32. line-height: 1;
  33. font-size: 4em;
  34. font-weight: 200;
  35. color: #444;
  36. text-transform: uppercase;
  37. }
  38. p {
  39. margin: 1.5em 0 0;
  40. line-height: 1.8;
  41. font-weight: 300;
  42. }
  43. a, a:link, a:visited {
  44. color: #1e7ad3;
  45. text-decoration: none;
  46. }
  47. a:hover {
  48. color: #0d5cdd;
  49. text-decoration: underline;
  50. }
  51. </style>
  52. </head>
  53. <body>
  54. <div>
  55. <h1>Oops!</h1>
  56. <p>
  57. <strong>The page you were looking for doesn't exist.</strong><br>
  58. Go back to <a href="//devdocs.io">devdocs.io</a>.
  59. </p>
  60. </div>
  61. </body>
  62. </html>