taskflow / frontend /src /components /tasks /TaskModal.module.css
Sughan-0077's picture
🚀 Complete Taskflow Suite: Initial Clean Release
f6c14df
Raw
History Blame Contribute Delete
1.48 kB
.overlay {
position: fixed; inset: 0; background: rgba(28,24,20,.5);
display: flex; align-items: center; justify-content: center;
z-index: 100; padding: 16px;
backdrop-filter: blur(3px);
animation: fadeIn .15s ease;
}
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.modal {
background: var(--bg-elevated); border: 1.5px solid var(--border-strong);
border-radius: var(--radius-xl); width: 100%; max-width: 530px;
box-shadow: var(--shadow-lg);
animation: slideUp .2s ease;
max-height: 92vh; overflow-y: auto;
}
@keyframes slideUp { from{transform:translateY(18px);opacity:0} to{transform:translateY(0);opacity:1} }
.header {
display: flex; align-items: center; justify-content: space-between;
padding: 20px 22px 0;
}
.title { font-family: 'Lora', serif; font-size: 17px; font-weight: 700; color: var(--text-primary); }
.closeBtn {
background: none; border: none; color: var(--text-muted); cursor: pointer;
padding: 5px; border-radius: var(--radius); display: flex; align-items: center;
transition: all .13s;
}
.closeBtn:hover { background: var(--bg-hover); color: var(--text-primary); }
.body { padding: 18px 22px; display: flex; flex-direction: column; gap: 14px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.footer {
display: flex; justify-content: flex-end; gap: 9px;
padding-top: 4px; border-top: 1px solid var(--border); margin-top: 4px;
}
@media(max-width:480px){ .row{grid-template-columns:1fr;} }