500.html 752 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>lolisafe</title>
  5. <link href='//fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'>
  6. <style>
  7. html, body {
  8. height: 100%;
  9. }
  10. body {
  11. margin: 0;
  12. padding: 0;
  13. width: 100%;
  14. color: #B0BEC5;
  15. display: table;
  16. font-weight: 100;
  17. font-family: 'Lato';
  18. }
  19. .container {
  20. text-align: center;
  21. display: table-cell;
  22. vertical-align: middle;
  23. }
  24. .content {
  25. text-align: center;
  26. display: inline-block;
  27. }
  28. .title {
  29. font-size: 72px;
  30. margin-bottom: 40px;
  31. }
  32. </style>
  33. </head>
  34. <body>
  35. <div class="container">
  36. <div class="content">
  37. <div class="title">Internal server error.</div>
  38. </div>
  39. </div>
  40. </body>
  41. </html>