41 lines
692 B
CSS
41 lines
692 B
CSS
body {
|
|
background-color: #f8f9fa;
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
.kanban-board {
|
|
display: flex;
|
|
gap: 1rem;
|
|
overflow-x: auto;
|
|
padding-bottom: 1rem;
|
|
}
|
|
|
|
.kanban-column {
|
|
background-color: #e9ecef;
|
|
border-radius: 0.5rem;
|
|
padding: 1rem;
|
|
width: 320px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.kanban-column h3 {
|
|
font-size: 1.2rem;
|
|
font-weight: 600;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.task-card {
|
|
background-color: #fff;
|
|
border: 1px solid #dee2e6;
|
|
border-radius: 0.25rem;
|
|
padding: 1rem;
|
|
margin-bottom: 1rem;
|
|
cursor: grab;
|
|
box-shadow: 0 1px 3px rgba(0,0,0,0.05);
|
|
}
|
|
|
|
.task-card:active {
|
|
cursor: grabbing;
|
|
background-color: #f1f3f5;
|
|
}
|