HTTP404.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <!--
  5. Bootstrap based HttpErrorPages
  6. License: MIT X11 License
  7. https://github.com/AndiDittrich/HttpErrorPages
  8. -->
  9. <meta charset="utf-8">
  10. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  11. <meta name="viewport" content="width=device-width, initial-scale=1">
  12. <title>We've got some trouble | 404 - Resource not found</title>
  13. <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" />
  14. <style type="text/css">
  15. html,body {
  16. width: 100%;
  17. height: 100%;
  18. background-color: #21232a;
  19. }
  20. body {
  21. color: #fff;
  22. text-align: center;
  23. text-shadow: 0 2px 4px rgba(0, 0, 0, .5);
  24. padding: 0px;
  25. min-height: 100%;
  26. -webkit-box-shadow: inset 0 0 100px rgba(0, 0, 0, .8);
  27. box-shadow: inset 0 0 100px rgba(0, 0, 0, .8);
  28. display: table;
  29. }
  30. .lead {
  31. color: #c0c0c0;
  32. }
  33. .cover {
  34. display: table-cell;
  35. vertical-align: middle;
  36. padding: 0 20px;
  37. }
  38. </style>
  39. </head>
  40. <body>
  41. <div class="cover">
  42. <h1>Resource not found <small>Error 404</small></h1>
  43. <p class="lead">The requested resource could not be found but may be available again in the future.</p>
  44. </div>
  45. </body>
  46. </html>