This commit is contained in:
DengDai
2025-12-09 13:08:38 +08:00
commit 02ecea06f8
36 changed files with 5876 additions and 0 deletions

74
static/css/style.css Normal file
View File

@@ -0,0 +1,74 @@
body {
background-color: #f5f5f5;
}
.card {
box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
border: none;
margin-bottom: 1rem;
}
.table-hover tbody tr:hover {
background-color: #f8f9fa;
}
.badge-status {
padding: 0.35em 0.65em;
font-size: 0.875em;
}
.status-pending {
background-color: #ffc107;
color: #000;
}
.status-claimed {
background-color: #17a2b8;
color: #fff;
}
.status-completed {
background-color: #28a745;
color: #fff;
}
.priority-high {
color: #dc3545;
font-weight: bold;
}
.priority-medium {
color: #007bff;
}
.priority-low {
color: #6c757d;
}
.btn-sm {
padding: 0.25rem 0.5rem;
font-size: 0.875rem;
}
.navbar-brand {
font-weight: bold;
font-size: 1.5rem;
}
.modal-header {
background-color: #f8f9fa;
}
#task-detail dt {
font-weight: 600;
color: #495057;
}
#task-detail dd {
margin-bottom: 1rem;
}
.chart-container {
position: relative;
height: 300px;
}