ttvtlb's picture
Xây dựng một hệ thống đầy đủ, hoàn chỉnh việc quản lý KPI của đơn vị, người dùng đăng nhập và cập nhật KPI thực hiện hành ngày, tổ trưỡng có thể cập nhật KPI của nhân viên, quản lý KPI trong tổ, Admin quản lý tất cả, cập nhật danh sách KPI, thống kê, xuất dữ liệu ra excel
63fb39f verified
raw
history blame contribute delete
576 Bytes
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
}
.kpi-card {
transition: all 0.3s ease;
}
.kpi-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.progress-bar {
transition: width 1s ease-in-out;
}
.dashboard-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 1.5rem;
}
@media (max-width: 768px) {
.dashboard-grid {
grid-template-columns: 1fr;
}
}