maintenance.blade.php 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <!DOCTYPE html>
  2. <html lang="ru">
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <meta name="viewport" content="width=device-width,initial-scale=1"/>
  6. <meta name="robots" content="noindex, nofollow"/>
  7. <title>Сайт на обслуживании</title>
  8. <style>
  9. *{box-sizing:border-box;margin:0;padding:0}
  10. body{
  11. font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  12. background:#0d0d0d;
  13. color:#fff;
  14. min-height:100vh;
  15. display:flex;
  16. align-items:center;
  17. justify-content:center;
  18. text-align:center;
  19. }
  20. .wrap{max-width:520px;padding:40px 24px}
  21. .icon{font-size:64px;margin-bottom:28px;opacity:.8}
  22. h1{
  23. font-size:clamp(28px,5vw,46px);
  24. font-weight:800;
  25. letter-spacing:-.03em;
  26. margin-bottom:16px;
  27. }
  28. h1 span{color:#e52222}
  29. p{
  30. font-size:16px;
  31. line-height:1.7;
  32. color:#aaa;
  33. margin-bottom:32px;
  34. }
  35. .badge{
  36. display:inline-block;
  37. background:#1a1a1a;
  38. border:1px solid #333;
  39. border-radius:100px;
  40. padding:6px 18px;
  41. font-size:13px;
  42. color:#666;
  43. letter-spacing:.04em;
  44. }
  45. .progress-bar{
  46. width:120px;
  47. height:3px;
  48. background:#222;
  49. border-radius:10px;
  50. margin:28px auto 0;
  51. overflow:hidden;
  52. }
  53. .progress-fill{
  54. height:100%;
  55. width:40%;
  56. background:linear-gradient(90deg,#e52222,#ff6b35);
  57. border-radius:10px;
  58. animation:progress 2.5s ease-in-out infinite alternate;
  59. }
  60. @keyframes progress{to{width:90%}}
  61. </style>
  62. </head>
  63. <body>
  64. <div class="wrap">
  65. <div class="icon">🔧</div>
  66. <h1>Сайт на<br><span>обслуживании</span></h1>
  67. <p>
  68. Мы проводим технические работы и скоро вернёмся.<br>
  69. Пожалуйста, загляните немного позже.
  70. </p>
  71. <div class="badge">Уже скоро всё заработает</div>
  72. <div class="progress-bar">
  73. <div class="progress-fill"></div>
  74. </div>
  75. </div>
  76. </body>
  77. </html>