404.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <link href="{{url_for('static', filename='img/favicon.ico')}}" rel="icon" />
  6. <title>Page Not Found :(</title>
  7. <style>
  8. body {
  9. text-align: center;
  10. }
  11. h1 {
  12. font-size: 50px;
  13. text-align: center;
  14. }
  15. span[frown] {
  16. transform: rotate(90deg);
  17. display: inline-block;
  18. color: #bbb;
  19. }
  20. body {
  21. font: 20px Constantia, "Hoefler Text", "Adobe Caslon Pro", Baskerville,
  22. Georgia, Times, serif;
  23. color: #999;
  24. text-shadow: 2px 2px 2px rgba(200, 200, 200, 0.5);
  25. }
  26. ::-moz-selection {
  27. background: #ff5e99;
  28. color: #fff;
  29. }
  30. ::selection {
  31. background: #ff5e99;
  32. color: #fff;
  33. }
  34. article {
  35. display: block;
  36. text-align: left;
  37. width: 500px;
  38. margin: 0 auto;
  39. }
  40. a {
  41. color: rgb(36, 109, 56);
  42. text-decoration: none;
  43. }
  44. a:hover {
  45. color: rgb(96, 73, 141);
  46. text-shadow: 2px 2px 2px rgba(36, 109, 56, 0.5);
  47. }
  48. </style>
  49. </head>
  50. <body>
  51. <article>
  52. <h1>Not found <span frown>:(</span></h1>
  53. <div>
  54. <p>Sorry, but the page you were trying to view does not exist.</p>
  55. <p>It looks like this was the result of either:</p>
  56. <ul>
  57. <li>a mistyped address</li>
  58. <li>an out-of-date link</li>
  59. </ul>
  60. <a href="/">Go to home page >></a>
  61. </div>
  62. </article>
  63. </body>
  64. </html>