503.blade.php 1.0 KB

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