/
Lisa086
/
BackupPro
Обзор
Документация
Войти
/
Lisa086
/
BackupPro
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
frontend/src/components/FileList.css
83 строки
1 KB
Lisa086
run
28 окт 2025, 16:14
28 окт 2025, 16:14
f9f460f
Код
Авторство
О чём код?
.file-list-card { background: white; padding: 25px; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); } .file-list-card h3 { margin-bottom: 20px; color: #333; } .no-files { text-align: center; color: #999; padding: 40px; } .file-list { display: flex; flex-direction: column; gap: 10px; } .file-item { display: flex; justify-content: space-between; align-items: center; padding: 15px; border: 1px solid #eee; border-radius: 8px; transition: background 0.2s; } .file-item:hover { background: #f9f9f9; } .file-info { display: flex; align-items: center; gap: 12px; } .file-icon { font-size: 24px; } .file-name { font-weight: 500; color: #333; } .file-actions { display: flex; gap: 10px; } .btn-download, .btn-delete { padding: 8px 16px; border: none; border-radius: 5px; font-size: 14px; transition: background 0.3s; } .btn-download { background: #28a745; color: white; } .btn-download:hover { background: #218838; } .btn-delete { background: #dc3545; color: white; } .btn-delete:hover { background: #c82333; }