Porcentaje de tareas por proyecto

This commit is contained in:
2026-08-04 01:00:36 +02:00
parent 4d76e7b7e3
commit 6752a9333d
3 changed files with 84 additions and 10 deletions

View File

@@ -111,6 +111,44 @@ .feature-icon {
width: 3rem;
}
.project-card {
background: rgba(255, 255, 255, 0.96);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.project-card:hover {
transform: translateY(-2px);
box-shadow: 0 18px 35px rgba(13, 110, 253, 0.16) !important;
}
.project-card-top {
background: linear-gradient(135deg, rgba(13, 110, 253, 0.15), rgba(111, 66, 193, 0.20));
height: 7px;
}
.project-icon-badge {
align-items: center;
background: linear-gradient(135deg, #0d6efd, #6f42c1);
border-radius: 0.85rem;
color: #fff;
display: inline-flex;
font-size: 0.95rem;
height: 2.2rem;
justify-content: center;
min-width: 2.2rem;
}
.progress {
border-radius: 999px;
height: 0.55rem;
overflow: hidden;
}
.progress-bar {
background: linear-gradient(135deg, #0d6efd, #6f42c1);
border-radius: 999px;
}
.offcanvas {
max-width: 100vw;
}