From 7cd6053a9843ac4074d05e3544a7b6fdebd421df Mon Sep 17 00:00:00 2001 From: Kallal Mukherjee Date: Thu, 24 Oct 2024 01:23:42 +0530 Subject: [PATCH 1/2] Create index.html --- index.html | 117 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 117 insertions(+) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 0000000..6504627 --- /dev/null +++ b/index.html @@ -0,0 +1,117 @@ + + + + + + + TO-DO APP + + + +

TO-DO APP

+ +
+
+
+ +
+
+

24th Sep

+

Wednesday

+
+
+ +
+ + + +
+ + + +
+

Completed Tasks

+
+ +
+
+
+
+ + + + From e0968515cf29350989853f495191d5daa36f7752 Mon Sep 17 00:00:00 2001 From: Kallal Mukherjee Date: Thu, 24 Oct 2024 01:24:28 +0530 Subject: [PATCH 2/2] Create Todo.css --- Todo.css | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 Todo.css diff --git a/Todo.css b/Todo.css new file mode 100644 index 0000000..7d0df91 --- /dev/null +++ b/Todo.css @@ -0,0 +1,57 @@ +body { + font-family: 'Open Sans', sans-serif; + background-color: #f8f9fa; + color: #343a40; + display: flex; + flex-direction: column; + align-items: center; + margin: 0; +} +#main-heading { + margin-top: 20px; +} +.container { + width: 90%; + max-width: 600px; + margin-top: 20px; +} +.grid-container { + display: grid; + grid-template-columns: 1fr auto auto; + gap: 10px; + margin-bottom: 20px; +} +.todo-container { + list-style-type: none; + padding: 0; + text-align: center; +} +.completed-todo-list { + margin-top: 20px; +} +.btn-todo { + background-color: #007bff; + color: white; +} +.completed { + text-decoration: line-through; + color: gray; +} +.light { + background-color: #343a40; + color: #f8f9fa; +} +.light-arrow { + color: #f8f9fa; +} +.delete-btn { + background: transparent; + border: none; + cursor: pointer; + color: #dc3545; + margin-left: 10px; +} +.delete-btn img { + width: 20px; + height: 20px; +}