129 lines
1.9 KiB
CSS
129 lines
1.9 KiB
CSS
.dialog-title {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.task-form {
|
|
padding: 20px;
|
|
}
|
|
|
|
.full-width {
|
|
width: 100%;
|
|
}
|
|
|
|
.custom-time {
|
|
display: flex;
|
|
gap: 15px;
|
|
}
|
|
|
|
.w-half {
|
|
width: 50%;
|
|
}
|
|
|
|
mat-form-field {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
margin: auto;
|
|
}
|
|
|
|
mat-form-field {
|
|
width: 100%;
|
|
}
|
|
|
|
.action-container {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 1em;
|
|
padding: 1.5em;
|
|
}
|
|
|
|
.weekday-toggle-group {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 8px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.weekday-toggle {
|
|
flex: 1;
|
|
padding: 8px 0;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
background: #f5f5f5;
|
|
cursor: pointer;
|
|
font-weight: 500;
|
|
transition: background 0.2s ease;
|
|
}
|
|
|
|
.weekday-toggle.selected {
|
|
background: #1976d2;
|
|
color: white;
|
|
border-color: #1976d2;
|
|
}
|
|
|
|
.month-toggle-group {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 6px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.month-toggle-row {
|
|
display: flex;
|
|
gap: 8px;
|
|
margin-bottom: 8px;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.month-toggle {
|
|
flex: 1;
|
|
padding: 8px;
|
|
min-width: 48px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 6px;
|
|
background-color: #f0f0f0;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
transition: background-color 0.2s ease;
|
|
}
|
|
|
|
.month-toggle.selected {
|
|
background-color: #4caf50;
|
|
color: white;
|
|
border-color: #4caf50;
|
|
}
|
|
|
|
.summary-card {
|
|
background: #f9fafb;
|
|
border-left: 5px solid #3f51b5;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
|
|
border-radius: 12px;
|
|
padding: 16px;
|
|
transition: box-shadow 0.3s ease;
|
|
}
|
|
|
|
.summary-card:hover {
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.summary-card {
|
|
background-color: #e3f2fd;
|
|
border-left: 4px solid #2196f3;
|
|
padding: 12px 16px;
|
|
margin-top: 16px;
|
|
border-radius: 6px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.summary-text {
|
|
color: #0d47a1;
|
|
line-height: 1.4;
|
|
}
|