File size: 799 Bytes
fa5264e 9edf840 fa5264e 9edf840 fa5264e 9edf840 fa5264e 9edf840 fa5264e 9edf840 fa5264e 9edf840 fa5264e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
/* Base styles */
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
}
/* Touch-friendly elements */
button, [role="button"] {
min-width: 44px;
min-height: 44px;
touch-action: manipulation;
}
/* Task item styles */
.task-item {
transition: all 0.2s ease;
}
.task-item:hover {
background-color: rgba(0, 0, 0, 0.02);
}
/* Mobile-first adjustments */
@media (max-width: 480px) {
html {
font-size: 16px;
}
.container {
padding-left: 1rem;
padding-right: 1rem;
}
}
/* Accessibility focus styles */
button:focus, input:focus {
outline: 2px solid #3b82f6;
outline-offset: 2px;
}
/* Scroll behavior */
html {
scroll-behavior: smooth;
} |