Implemented Task Manager
This commit is contained in:
39
static/tasks.css
Normal file
39
static/tasks.css
Normal file
@@ -0,0 +1,39 @@
|
||||
ul {
|
||||
margin: 1em;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5em;
|
||||
}
|
||||
|
||||
li {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0.5em;
|
||||
background-color: var(--color-bg2);
|
||||
|
||||
border: 1px solid var(--color);
|
||||
|
||||
span {
|
||||
flex-direction: row;
|
||||
gap: 0.5em;
|
||||
}
|
||||
}
|
||||
|
||||
.task-value,
|
||||
.task-value-editor {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
output.task-value {
|
||||
border: none;
|
||||
text-decoration: 1px dotted underline var(--color);
|
||||
}
|
||||
|
||||
.view-box {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.edit-box {
|
||||
display: none;
|
||||
}
|
||||
Reference in New Issue
Block a user