/* * styles.css * Custom styles for the notes application */ /* Reset some default browser styles */ * { margin: 0; padding: 0; } body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #f5f5f5; color: #333; } .container { max-width: 800px; margin: auto; padding: 20px; background-color: #fff; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); } h2 { color: #2c3e50; margin-top: 20px; } .todo-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #ddd; } .todo-item:hover { cursor: pointer; } .todo-item .checkbox { width: 20px; height: 20px; margin-right: 10px; vertical-align: middle; } .todo-item .text { flex-grow: 1; font-size: 16px; } .todo-item .delete-btn { color: #e74c3c; font-weight: bold; text-decoration: underline; cursor: pointer; } .todo-item .delete-btn:hover { text-decoration: line-through; } #note-title { font-size: 24px; margin-bottom: 20px; } #note-content { resize: vertical; min-height: 100px; } @media (max-width: 600px) { .container { padding: 15px; } }