:)
Some checks failed
Deploy Encrypted Todo App / build-and-push (push) Has been cancelled

This commit is contained in:
2025-06-16 09:16:22 -06:00
parent 2f08b94c89
commit d71062cf13
13 changed files with 1817 additions and 1160 deletions

View File

@ -13,6 +13,34 @@ body {
display: flex;
justify-content: space-between;
align-items: flex-start;
transition: background-color 0.3s ease;
}
.todo-item.completed {
background: #e8f5e9;
}
.todo-item.completed .todo-text {
text-decoration: line-through;
color: #666;
}
.todo-header {
display: flex;
align-items: flex-start;
gap: 10px;
}
.todo-checkbox {
margin-top: 3px;
width: 18px;
height: 18px;
cursor: pointer;
}
.todo-text {
font-size: 1.1em;
line-height: 1.4;
}
.todo-content {
@ -116,6 +144,7 @@ input:checked + .slider:before {
display: flex;
align-items: center;
margin-bottom: 20px;
justify-content: space-between;
}
.header h1 {
@ -138,6 +167,44 @@ input:checked + .slider:before {
margin-left: 10px;
}
.shared-with-list {
background-color: #4a6ea9;
color: white;
padding: 3px 8px;
border-radius: 10px;
font-size: 0.8em;
margin-left: 10px;
display: inline-block;
}
.todo-metadata {
display: flex;
flex-direction: column;
gap: 5px;
margin-top: 8px;
}
.creator-badge {
background-color: #28a745;
color: white;
padding: 3px 8px;
border-radius: 12px;
font-size: 0.75em;
font-weight: bold;
display: inline-block;
width: fit-content;
}
.participants-badge {
background-color: #6c757d;
color: white;
padding: 3px 8px;
border-radius: 12px;
font-size: 0.75em;
display: inline-block;
width: fit-content;
}
.container {
background-color: white;
border-radius: 8px;
@ -151,3 +218,19 @@ input:checked + .slider:before {
padding-bottom: 10px;
margin-top: 0;
}
#logoutBtn {
margin-left: auto;
padding: 8px 24px;
background-color: #4a6ea9;
color: white;
border: none;
border-radius: 6px;
font-size: 1em;
cursor: pointer;
transition: background 0.2s;
}
#logoutBtn:hover {
background-color: #3a5a89;
}