/
bitrix-dev
/
Starter-kit
Обзор
Документация
Войти
/
bitrix-dev
/
Starter-kit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
main
local/php_interface/s1/site_closed_dev.php
138 строк
4 KB
Alexey Karizhenskiy
Первая сборка (из ранее используемого)
19 янв 2026, 21:00
19 янв 2026, 21:00
d843e36
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="ru"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Сайт в разработке</title> <style> :root { --primary-color: #00ff9d; --secondary-color: #00b8ff; --bg-color: #1a1a1a; --text-color: #ffffff; --text-secondary: #cccccc; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg-color); min-height: 100vh; display: grid; place-items: center; color: var(--text-color); padding: 1rem; } .container { max-width: 600px; width: 100%; text-align: center; padding: 2rem; background: rgba(255, 255, 255, 0.05); border-radius: 24px; backdrop-filter: blur(10px); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); } h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1.5rem; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 800; } p { font-size: 1.125rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 2rem; } .code-container { background: rgba(42, 42, 42, 0.8); padding: 1.5rem; border-radius: 16px; margin: 1.5rem 0; border: 1px solid rgba(255, 255, 255, 0.1); } .code-line { font-family: 'JetBrains Mono', 'Fira Code', monospace; font-size: 0.9rem; margin: 0.5rem 0; color: var(--primary-color); display: flex; align-items: center; gap: 0.5rem; } .code-line::before { content: '>'; opacity: 0.5; } .blink { animation: blink 1.2s infinite cubic-bezier(0.4, 0, 0.6, 1); } @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } } .progress-bar { width: 100%; height: 8px; background: rgba(255, 255, 255, 0.1); border-radius: 999px; overflow: hidden; margin-top: 2rem; } .progress { height: 100%; background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); animation: progress 3s ease-in-out infinite; border-radius: 999px; } @keyframes progress { 0% { width: 0%; } 50% { width: 70%; } 100% { width: 100%; } } @media (prefers-reduced-motion: reduce) { .blink, .progress { animation: none; } } </style> </head> <body> <div class="container"> <h1>Сайт в разработке</h1> <div class="code-container"> <div class="code-line">git checkout -b feature/redesign</div> <div class="code-line">pnpm install</div> <div class="code-line">pnpm run dev<span class="blink">█</span></div> </div> <p> Мы обновляем наш сайт, чтобы сделать его еще лучше.<br> Совсем скоро здесь появится что-то особенное! </p> <div class="progress-bar"> <div class="progress"></div> </div> </div> </body> </html>