503.blade.php 1.0 KB

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