Aucune description

404.blade.php 818B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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">404 NOT FOUND</div>
  33. <div class="title">您访问的页面今天走丢了:(</div>
  34. </div>
  35. </div>
  36. </body>
  37. </html>