/
Lisa086
/
BackupPro
Обзор
Документация
Войти
/
Lisa086
/
BackupPro
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
frontend/src/App.css
98 строк
2 KB
Lisa086
run
28 окт 2025, 16:14
28 окт 2025, 16:14
f9f460f
Код
Авторство
О чём код?
.App { min-height: 100vh; display: flex; flex-direction: column; } .container { max-width: 1200px; margin: 0 auto; padding: 20px; width: 100%; } .auth-container { display: flex; justify-content: center; align-items: center; min-height: 100vh; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); } .auth-card { background: white; padding: 40px; border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); width: 100%; max-width: 400px; } .auth-card h2 { margin-bottom: 30px; color: #333; text-align: center; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; color: #555; font-weight: 500; } .form-group input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-size: 14px; } .form-group input:focus { outline: none; border-color: #667eea; } .btn { width: 100%; padding: 12px; background: #667eea; color: white; border: none; border-radius: 5px; font-size: 16px; font-weight: 500; transition: background 0.3s; } .btn:hover { background: #5568d3; } .btn:disabled { background: #ccc; cursor: not-allowed; } .link-text { text-align: center; margin-top: 20px; color: #666; } .link-text a { color: #667eea; text-decoration: none; font-weight: 500; } .link-text a:hover { text-decoration: underline; } .error-message { background: #fee; color: #c33; padding: 12px; border-radius: 5px; margin-bottom: 20px; text-align: center; } .success-message { background: #efe; color: #3c3; padding: 12px; border-radius: 5px; margin-bottom: 20px; text-align: center; }