35 lines
718 B
CSS
35 lines
718 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.navbar {
|
|
box-shadow: 0 2px 4px rgba(0,0,0,.04);
|
|
}
|
|
|
|
.gradient-header {
|
|
background: linear-gradient(90deg, #0d6efd, #0dcaf0);
|
|
color: white;
|
|
}
|
|
|
|
.task-card {
|
|
transition: all 0.2s ease-in-out;
|
|
border-left-width: 4px;
|
|
}
|
|
|
|
.task-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.border-high { border-left-color: #dc3545; }
|
|
.border-medium { border-left-color: #ffc107; }
|
|
.border-low { border-left-color: #0dcaf0; }
|
|
|
|
.status-badge {
|
|
font-size: 0.8em;
|
|
font-weight: 600;
|
|
}
|