503.blade.php 1.2 KB

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