500.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Error</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. font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  22. color: #555;
  23. text-align: center;
  24. background: white;
  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>Something is technically wrong.</strong><br>
  54. Thanks for noticing&mdash;we're going to fix it up and have things back to normal soon.<br>
  55. Go back to <a href="//devdocs.io">devdocs.io</a>.
  56. </p>
  57. </div>
  58. </body>
  59. </html>