/
dandud132
/
Vita
Обзор
Документация
Войти
/
dandud132
/
Vita
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
source_code/web/static/style.css
63 строки
1 KB
Dan
feat: добавить чат-панель с шифрованием и интеграцией с GitVerse API
12 апр 2026, 14:10
12 апр 2026, 14:10
b91ad33
Код
Авторство
О чём код?
* { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: system-ui, -apple-system, sans-serif; background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); min-height: 100vh; display: flex; justify-content: center; align-items: center; padding: 20px; } .container { background: #ffffff; padding: 2rem; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.25); width: 100%; max-width: 420px; } h2 { text-align: center; margin-bottom: 1.5rem; color: #111; } .form-group { margin-bottom: 1.25rem; } label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: #334155; font-size: 0.9rem; } input, select { width: 100%; padding: 0.75rem 1rem; border: 1px solid #cbd5e1; border-radius: 8px; font-size: 1rem; background: #f8fafc; transition: all 0.2s; } input:focus, select:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2); } .btn-login { width: 100%; padding: 0.8rem; background: #2563eb; color: white; border: none; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.2s; } .btn-login:hover { background: #1d4ed8; }