38 lines
639 B
CSS
38 lines
639 B
CSS
/* Add your custom styles here */
|
|
body {
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.navbar {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.card {
|
|
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
/* Dashboard KPI cards */
|
|
.card-text.fs-4 {
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* Kanban Board Styles */
|
|
.kanban-board .card-header {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.kanban-board .card-body {
|
|
min-height: 400px;
|
|
overflow-y: auto;
|
|
background-color: #f4f6f9;
|
|
}
|
|
|
|
.kanban-board .card-body .card {
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
transition: box-shadow 0.2s ease-in-out;
|
|
}
|
|
|
|
.kanban-board .card-body .card:hover {
|
|
box-shadow: 0 4px 8px rgba(0,0,0,0.15);
|
|
}
|