Initial project push.
This commit is contained in:
64
theme/partials/task-list.scss
Normal file
64
theme/partials/task-list.scss
Normal file
@@ -0,0 +1,64 @@
|
||||
#task-list {
|
||||
.container {
|
||||
max-width: 800px;
|
||||
margin: auto;
|
||||
padding: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
.task-container {
|
||||
max-width: 700px;
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.task-card {
|
||||
background: #ffffff;
|
||||
border-radius: 16px;
|
||||
padding: 24px;
|
||||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
|
||||
border: 1px solid var(--color-light-gray);
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
/* Left side of the card: Title and Link */
|
||||
.task-info {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.task-title {
|
||||
font-size: 1.15rem;
|
||||
font-weight: 600;
|
||||
color: var(--color-charcoal);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* Status Badges */
|
||||
.task-status {
|
||||
padding: 6px 14px;
|
||||
border-radius: 100px;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 800;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
|
||||
/* Pending: Subtle Terracotta */
|
||||
.status-pending {
|
||||
background-color: #FDF2F0; /* Very light version of terracotta */
|
||||
color: var(--color-terracotta);
|
||||
border: 1px solid #F5DBD3;
|
||||
}
|
||||
|
||||
/* Completed: Subtle Sage */
|
||||
.status-completed {
|
||||
background-color: #F0F5F3; /* Very light version of sage */
|
||||
color: var(--color-sage-green);
|
||||
border: 1px solid #D1E0DA;
|
||||
}
|
||||
Reference in New Issue
Block a user