61 lines
1.1 KiB
CSS
61 lines
1.1 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background-color: #F8F9FA;
|
|
color: #333;
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.task-card {
|
|
border-radius: 0.5rem;
|
|
border: 1px solid #e9ecef;
|
|
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
|
|
transition: box-shadow 0.2s ease-in-out;
|
|
}
|
|
|
|
.task-card:hover {
|
|
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.task-card.completed {
|
|
background-color: #f8f9fa;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.task-card.completed .card-title,
|
|
.task-card.completed .card-text {
|
|
text-decoration: line-through;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #4A90E2;
|
|
border-color: #4A90E2;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #357ABD;
|
|
border-color: #357ABD;
|
|
}
|
|
|
|
.btn-success {
|
|
background-color: #50E3C2;
|
|
border-color: #50E3C2;
|
|
}
|
|
|
|
.btn-success:hover {
|
|
background-color: #38A89D;
|
|
border-color: #38A89D;
|
|
}
|
|
|
|
.form-control, .form-select {
|
|
border-radius: 0.5rem;
|
|
}
|
|
|
|
.toast-container {
|
|
z-index: 1090;
|
|
}
|