HTTP521.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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 | 521 - Webservice currently unavailable</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>Webservice currently unavailable <small>Error 521</small></h1>
  43. <p class="lead">We've got some trouble with our backend upstream cluster.<br />
  44. Our service team has been dispatched to bring it back online.</p>
  45. </div>
  46. </body>
  47. </html>