/
axe
/
pet2
Обзор
Документация
Войти
/
axe
/
pet2
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
public/style.css
135 строк
2 KB
gusen
initial commit
09 июн 2026, 22:01
09 июн 2026, 22:01
7bf5434
Код
Авторство
О чём код?
* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif; background: #f0f2f5; padding: 20px; color: #1a1a1a; } .app-container { max-width: 1200px; margin: 0 auto; } /* Карточки */ .card { background: white; border-radius: 12px; padding: 20px; margin-bottom: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); } .login-card { max-width: 400px; margin: 100px auto; } /* Формы */ input, select, textarea { width: 100%; padding: 10px; margin: 8px 0; border: 1px solid #ddd; border-radius: 8px; font-size: 14px; } button { background: #0066cc; color: white; border: none; padding: 10px 16px; border-radius: 8px; cursor: pointer; font-size: 14px; margin-right: 8px; margin-top: 8px; } button:hover { background: #0052a3; } .logout-btn { background: #dc2626; } .logout-btn:hover { background: #b91c1c; } /* Шапка */ .header { display: flex; justify-content: space-between; align-items: center; background: white; padding: 15px 20px; border-radius: 12px; margin-bottom: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); } .user-info { display: flex; align-items: center; gap: 15px; } /* Блок создания кейса */ .create-case { background: white; border-radius: 12px; padding: 20px; margin-bottom: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); } /* Сетка кейсов */ .cases-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 20px; } .case-item { margin-bottom: 0; } /* Статусы */ .case-status { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: bold; } .status-review { background: #fef3c7; color: #92400e; } .status-progress { background: #dbeafe; color: #1e40af; } .status-waiting { background: #e0e7ff; color: #3730a3; } .status-done { background: #d1fae5; color: #065f46; } /* Утилиты */ .flex-between { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; } .mt-2 { margin-top: 12px; } .text-sm { font-size: 14px; color: #666; margin-top: 8px; }