Нет описания

503.blade.php 590B

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