├── .github └── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ ├── docs.yml │ ├── feature_request.yml │ └── other.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── User Experience ├── DarkIcons │ ├── Icon-Fill-all-done.png │ ├── Icon-Fill-plus-circle.png │ ├── Icon-Fill-trash-2.png │ ├── Mask.png │ └── image 1.png ├── Design.md ├── Image │ ├── Screenshot from 2022-10-01 18-51-16.png │ └── Screenshot from 2022-10-01 18-53-27.png ├── LightIcons │ ├── Icon-Fill-all-done.png │ ├── Icon-Fill-plus-circle.png │ ├── Icon-Fill-trash-2.png │ ├── Mask.png │ └── image 2.png └── Preview │ └── 2022-10-02 00-46-16.mp4 ├── about ├── about.css └── index.html ├── images ├── 4380.jpg ├── check.png ├── edit.png ├── favicon.png ├── plus.png ├── todo.svg └── trash1.png ├── index.html ├── main.js ├── package.json └── style.css /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- 1 | name: 🐛 Bug 2 | description: Report an issue to help improve the project. 3 | labels: ["bug"] 4 | body: 5 | - type: textarea 6 | id: description 7 | attributes: 8 | label: Description 9 | description: A brief description of the issue, also include what you tried and what didn't work 10 | validations: 11 | required: true 12 | - type: textarea 13 | id: screenshots 14 | attributes: 15 | label: Screenshots 16 | description: Please add screenshots if applicable 17 | validations: 18 | required: false 19 | - type: textarea 20 | id: extrainfo 21 | attributes: 22 | label: Additional information 23 | description: Is there anything else we should know about this bug? 24 | validations: 25 | required: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/docs.yml: -------------------------------------------------------------------------------- 1 | name: 📄 Documentation issue 2 | description: Found an issue in the documentation? 3 | title: "[DOCS] " 4 | labels: ["documentation"] 5 | body: 6 | - type: textarea 7 | id: description 8 | attributes: 9 | label: Description 10 | description: A brief description of the issue, also include what you tried and what didn't work 11 | validations: 12 | required: true 13 | - type: textarea 14 | id: screenshots 15 | attributes: 16 | label: Screenshots 17 | description: Please add screenshots if applicable 18 | validations: 19 | required: false 20 | - type: textarea 21 | id: extrainfo 22 | attributes: 23 | label: Additional information 24 | description: Is there anything else we should know about this issue? 25 | validations: 26 | required: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- 1 | name: 💡Feature Request 2 | description: Have a new idea/feature for Sukoon? Please suggest! 3 | title: "[FEATURE] " 4 | labels: 5 | ["enhancement"] 6 | body: 7 | - type: textarea 8 | id: description 9 | attributes: 10 | label: Description 11 | description: A brief description of the enhancement you propose, also include what you tried and what worked. 12 | validations: 13 | required: true 14 | - type: textarea 15 | id: screenshots 16 | attributes: 17 | label: Screenshots 18 | description: Please add screenshots if applicable 19 | validations: 20 | required: false 21 | - type: textarea 22 | id: extrainfo 23 | attributes: 24 | label: Additional information 25 | description: Is there anything else we should know about this idea? 26 | validations: 27 | required: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.yml: -------------------------------------------------------------------------------- 1 | name: Other 2 | description: Use this for any other issues. Avoid creating blank issues 3 | title: "[OTHER]" 4 | 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: "# Other issue" 9 | - type: textarea 10 | id: issuedescription 11 | attributes: 12 | label: What would you like to share? 13 | description: Provide a clear and concise explanation of your issue. 14 | validations: 15 | required: true 16 | - type: textarea 17 | id: extrainfo 18 | attributes: 19 | label: Additional information 20 | description: Is there anything else we should know about this issue? 21 | validations: 22 | required: false -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | - Demonstrating empathy and kindness toward other people 21 | - Being respectful of differing opinions, viewpoints, and experiences 22 | - Giving and gracefully accepting constructive feedback 23 | - Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | - Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | - The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | - Trolling, insulting or derogatory comments, and personal or political attacks 33 | - Public or private harassment 34 | - Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | - Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at sharanyamitra28@gmail.com . 63 | All complaints will be reviewed and investigated promptly and fairly. 64 | 65 | All community leaders are obligated to respect the privacy and security of the 66 | reporter of any incident. 67 | 68 | ## Enforcement Guidelines 69 | 70 | Community leaders will follow these Community Impact Guidelines in determining 71 | the consequences for any action they deem in violation of this Code of Conduct: 72 | 73 | ### 1. Correction 74 | 75 | *Community Impact*: Use of inappropriate language or other behavior deemed 76 | unprofessional or unwelcome in the community. 77 | 78 | *Consequence*: A private, written warning from community leaders, providing 79 | clarity around the nature of the violation and an explanation of why the 80 | behavior was inappropriate. A public apology may be requested. 81 | 82 | ### 2. Warning 83 | 84 | *Community Impact*: A violation through a single incident or series 85 | of actions. 86 | 87 | *Consequence*: A warning with consequences for continued behavior. No 88 | interaction with the people involved, including unsolicited interaction with 89 | those enforcing the Code of Conduct, for a specified period of time. This 90 | includes avoiding interactions in community spaces as well as external channels 91 | like social media. Violating these terms may lead to a temporary or 92 | permanent ban. 93 | 94 | ### 3. Temporary Ban 95 | 96 | *Community Impact*: A serious violation of community standards, including 97 | sustained inappropriate behavior. 98 | 99 | *Consequence*: A temporary ban from any sort of interaction or public 100 | communication with the community for a specified period of time. No public or 101 | private interaction with the people involved, including unsolicited interaction 102 | with those enforcing the Code of Conduct, is allowed during this period. 103 | Violating these terms may lead to a permanent ban. 104 | 105 | ### 4. Permanent Ban 106 | 107 | *Community Impact*: Demonstrating a pattern of violation of community 108 | standards, including sustained inappropriate behavior, harassment of an 109 | individual, or aggression toward or disparagement of classes of individuals. 110 | 111 | *Consequence*: A permanent ban from any sort of public interaction within 112 | the community. 113 | 114 | ## Attribution 115 | 116 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 117 | version 2.0, available at 118 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 119 | 120 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 121 | enforcement ladder](https://github.com/mozilla/diversity). 122 | 123 | [homepage]: https://www.contributor-covenant.org 124 | 125 | For answers to common questions about this code of conduct, see the FAQ at 126 | https://www.contributor-covenant.org/faq. Translations are available at 127 | https://www.contributor-covenant.org/translations. 128 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # How to contribute 2 | 3 | First of all, thank you for taking the time to contribute to this project. We've tried to make a stable project and try to fix bugs and add new features continuously. You can help us do more. 4 | 5 | ## Getting started 6 | 7 | ### Check out the roadmap 8 | 9 | We have some functionalities in mind and we have issued them and there is a _milestone_ label available on the issue. If there is a bug or a feature that is not listed in the **issues** page or there is no one assigned to the issue, feel free to fix/add it! Although it's better to discuss it in the issue or create a new issue for it so there is no conflicting code. 10 | 11 | ### Writing some code! 12 | 13 | Contributing to a project on Github is pretty straight forward. If this is you're first time, these are the steps you should take. 14 | 15 | **1. Fork the repository to your account and make clone of it.** 16 | 17 | ![fork](https://user-images.githubusercontent.com/62185337/193636580-1d3503b0-3b0d-47ce-a138-d712bcd1d0a9.png) 18 | **2. To clone the forked repository** 19 | 20 | ![gitClone](https://user-images.githubusercontent.com/62185337/193636646-9dc9691d-2791-4c40-81e6-75c73eb7a185.png) 21 | 22 | - to fork the repository follow this [tutorial.](https://www.freecodecamp.org/news/how-to-fork-a-github-repository/) 23 | - to clone the repository follow this [tutorial.](https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository) 24 | 25 | 2. add this repository to upstream and run git pull on main branch. 26 | 3. create a new branch from main and add your changes to it, commit them with meaningful commit message and open a pull request on this repo. 27 | - if you don't know all of this, don't worry, follow this [tutorial](https://www.youtube.com/watch?v=c6b6B9oN4Vg) to know all these things. 28 | 29 | And that's it! Read the code available and change the part you don't like! You're change should not break the existing code. 30 | 31 | If you're adding a new functionality, start from the branch **master**. It would be a better practice to create a new branch and work in there. 32 | 33 | When you're done, submit a pull request and for one of the maintainers to check it out. We would let you know if there is any problem or any changes that should be considered. 34 | 35 | Support questions 36 | Ask on our GitHub Discussions\_ for long term discussion or larger questions. 37 | GitHub Discussions: https://github.com/Rick-mad-lab/Todolist/discussions 38 | Reporting issues 39 | ⏰ 40 | 41 | Submitting Your Ideas 42 | 🚛 43 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Sharanya Mitra & Contributors 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | A straightforward web application, allowing you to save your daily chores so you won't forget anything. 3 |
4 |
5 |
6 | 7 |

8 | 9 | Be a part of our Community on Discord 🚀 10 | 11 | 12 |
13 |
14 |
15 | 16 |

17 |
18 | 19 | ![Pull requests](https://img.shields.io/github/issues-pr/Rick-mad-lab/Todolist) ![Forks](https://img.shields.io/github/forks/Rick-mad-lab/Todolist) ![Stars](https://img.shields.io/github/stars/Rick-mad-lab/Todolist) ![Licence](https://img.shields.io/github/license/Rick-mad-lab/Todolist?color=orange) 20 |
21 |
22 | 23 | LOC 24 | GitHub contributors 25 | Issues Badge 26 |
27 |
28 | 29 | # About the project. 30 | This project is a TODO list app, with nice animations. It allows the users to create, delete or modify tasks. The user can add planned tasks or delete tasks that are not needed. Also, the app has the ability to indicate if a task is completed or not, which is achieved by differentiated opacity between completed and pending tasks. 31 | 32 |
33 |
34 | 35 | # Features 36 | - Track you daily tasks 37 | - Add new tasks 38 | - Mark tasks as Completed 39 | - Delete Completed tasks 40 | - Add voice notes to be appear as tasks 41 | - Lovely animations to enhance user experience 42 | 43 |
44 |
45 | 46 | # Technologies 47 | - HTML 48 | - Javascript 49 | - CSS 50 | 51 |
52 |
53 | 54 | # Check out the application 55 | Find the application runnning at: 56 | https://rick-mad-lab.github.io/Todolist/ 57 | 58 |
59 |
60 | 61 |

✨OUR VALUABLE CONTRIBUTORS✨

62 |

63 | 64 | 65 | 66 |

67 | 68 | # How to Run the project locally 69 | To run the project locally, 70 | 71 | - Clone the project 72 | - Browse to the project directory on your system. 73 | - Open index.html 74 | 75 | You'll find the project running in your browser.. Enjoy! 76 | 77 |
78 |
79 | 80 | 81 | 82 |

Contribution Guidelines 🏗

83 | 84 | If you wish to contribute, we highly recommend following the guidelines mentioned below. 85 | 86 | **1.** Fork [this](https://github.com/Rick-mad-lab/Todolist) repository. 87 | 88 | **2.** Clone your forked copy of the project. 89 | 90 | ```bash 91 | git clone git@github.com:Rick-mad-lab/Todolist.git 92 | ``` 93 | 94 | **3.** Navigate to the project directory. 95 | ``` 96 | cd Todolist 97 | ``` 98 | 99 | **4.** Create a new branch: 100 | ``` 101 | git checkout -b YourBranchName 102 | ``` 103 | 104 | **5.** Make changes in source code. 105 | 106 | **6.** Stage your changes and commit 107 | 108 | ``` 109 | git add . 110 | git commit -m "" 111 | ``` 112 | 113 | **7.** Push your local commits to the remote repo. 114 | 115 | ``` 116 | git push origin YourBranchName 117 | ``` 118 | 119 | **8.** Create a [PR](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request) 120 | 121 | **Note:** If anyone contributes to this repository, the changes will not be reflected in your local repository. For that: 122 | 123 | **9.** Setup a reference(remote) to the original repository to get all the changes from the remote. 124 | ``` 125 | git remote add upstream git@github.com:Rick-mad-lab/Todolist.git 126 | ``` 127 | 128 | **10.** Check the remotes for this repository. 129 | ``` 130 | git remote -v 131 | ``` 132 | 133 | **11.** Fetching from the remote repository will bring in its branches and their respective commits. 134 | ``` 135 | git fetch upstream 136 | ``` 137 | 138 | **12.** Make sure that you're on your master branch. 139 | ``` 140 | git checkout main 141 | ``` 142 | 143 | **13.** Now that you have fetched the upstream repository, you can merge its changes into our local branch. This will bring that branch into sync with the upstream, without losing the local changes. 144 | ``` 145 | git merge upstream/main 146 | ``` 147 | 148 |

Code of Conduct 📜

149 | 150 | 151 | We welcome all kinds of positive contributions helping us to improve and grow the project. 152 | 153 | If you wish to contribute, you can work on any issues [listed here](https://github.com/Rick-mad-lab/Todolist/issues) or create one on your own. After adding your code, please send us a Pull Request. 154 | 155 | > Please read [` Guidelines for Contributing`](CONTRIBUTING.md) and [`CODE OF CONDUCT`](CODE_OF_CONDUCT.md) to understand the process for submitting pull requests to us and comply to code of conduct. 156 | 157 | 158 | 159 |
160 | 161 | © 2022 Sharanya Mitra and contributors\ 162 | This project is licensed under the [**MIT license**](https://github.com/Rick-mad-lab/Todolist/blob/master/LICENSE). 163 | -------------------------------------------------------------------------------- /User Experience/DarkIcons/Icon-Fill-all-done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharanya-mitra/Todolist/19e805a59068029930fd2f6a2bed1617f3ec2ed9/User Experience/DarkIcons/Icon-Fill-all-done.png -------------------------------------------------------------------------------- /User Experience/DarkIcons/Icon-Fill-plus-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharanya-mitra/Todolist/19e805a59068029930fd2f6a2bed1617f3ec2ed9/User Experience/DarkIcons/Icon-Fill-plus-circle.png -------------------------------------------------------------------------------- /User Experience/DarkIcons/Icon-Fill-trash-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharanya-mitra/Todolist/19e805a59068029930fd2f6a2bed1617f3ec2ed9/User Experience/DarkIcons/Icon-Fill-trash-2.png -------------------------------------------------------------------------------- /User Experience/DarkIcons/Mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharanya-mitra/Todolist/19e805a59068029930fd2f6a2bed1617f3ec2ed9/User Experience/DarkIcons/Mask.png -------------------------------------------------------------------------------- /User Experience/DarkIcons/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharanya-mitra/Todolist/19e805a59068029930fd2f6a2bed1617f3ec2ed9/User Experience/DarkIcons/image 1.png -------------------------------------------------------------------------------- /User Experience/Design.md: -------------------------------------------------------------------------------- 1 | # User Experience for TO-DO List Light Theme 2 |

This is a User Experience and User Interface on Web for Light Theme Users on the To-Do List

3 | 4 | ## Preview
5 | 6 | 7 |
8 | 9 | ## Color Pallet 10 | 11 | 12 | 13 | ```bash 14 | #F8C676 15 | ``` 16 | 17 | 18 | ```bash 19 | #FFF4A9 20 | ``` 21 | 22 | 23 | ```bash 24 | #ABABAB 25 | ``` 26 | 27 | 28 | ```bash 29 | #FFE84A 30 | ``` 31 | 32 |
33 | 34 | ## Icon 35 | 36 | -------------------------------------------------------------------------------- /User Experience/Image/Screenshot from 2022-10-01 18-51-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharanya-mitra/Todolist/19e805a59068029930fd2f6a2bed1617f3ec2ed9/User Experience/Image/Screenshot from 2022-10-01 18-51-16.png -------------------------------------------------------------------------------- /User Experience/Image/Screenshot from 2022-10-01 18-53-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharanya-mitra/Todolist/19e805a59068029930fd2f6a2bed1617f3ec2ed9/User Experience/Image/Screenshot from 2022-10-01 18-53-27.png -------------------------------------------------------------------------------- /User Experience/LightIcons/Icon-Fill-all-done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharanya-mitra/Todolist/19e805a59068029930fd2f6a2bed1617f3ec2ed9/User Experience/LightIcons/Icon-Fill-all-done.png -------------------------------------------------------------------------------- /User Experience/LightIcons/Icon-Fill-plus-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharanya-mitra/Todolist/19e805a59068029930fd2f6a2bed1617f3ec2ed9/User Experience/LightIcons/Icon-Fill-plus-circle.png -------------------------------------------------------------------------------- /User Experience/LightIcons/Icon-Fill-trash-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharanya-mitra/Todolist/19e805a59068029930fd2f6a2bed1617f3ec2ed9/User Experience/LightIcons/Icon-Fill-trash-2.png -------------------------------------------------------------------------------- /User Experience/LightIcons/Mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharanya-mitra/Todolist/19e805a59068029930fd2f6a2bed1617f3ec2ed9/User Experience/LightIcons/Mask.png -------------------------------------------------------------------------------- /User Experience/LightIcons/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharanya-mitra/Todolist/19e805a59068029930fd2f6a2bed1617f3ec2ed9/User Experience/LightIcons/image 2.png -------------------------------------------------------------------------------- /User Experience/Preview/2022-10-02 00-46-16.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharanya-mitra/Todolist/19e805a59068029930fd2f6a2bed1617f3ec2ed9/User Experience/Preview/2022-10-02 00-46-16.mp4 -------------------------------------------------------------------------------- /about/about.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500&display=swap'); 2 | 3 | * { 4 | -webkit-user-select: none; 5 | -khtml-user-select: none; 6 | -moz-user-select: -moz-none; 7 | -o-user-select: none; 8 | user-select: none; 9 | } 10 | 11 | body { 12 | 13 | background-size: 4000% 4000%; 14 | border-image-repeat: no-repeat; 15 | animation: gradient 15s ease infinite; 16 | font-family: 'M PLUS Rounded 1c', sans-serif; 17 | 18 | } 19 | @keyframes gradient { 20 | 0% { 21 | background-position: 0% 50%; 22 | } 23 | 24 | 50% { 25 | background-position: 100% 50%; 26 | } 27 | 28 | 100% { 29 | background-position: 0% 50%; 30 | } 31 | } 32 | 33 | .abt { 34 | color: #FFF; 35 | text-decoration: none; 36 | } 37 | .about-container{ 38 | margin-top: 8%; 39 | margin-bottom: 10%; 40 | margin-left: 25%; 41 | margin-right: 25%; 42 | text-align: center; 43 | font-size: 1.5em; 44 | background: rgba( 255, 255, 255, 0.25 ); 45 | box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 ); 46 | backdrop-filter: blur( 4px ); 47 | -webkit-backdrop-filter: blur( 4px ); 48 | border-radius: 10px; 49 | border: 1px solid rgba( 255, 255, 255, 0.18 ); 50 | padding: 20px 40px; 51 | } 52 | 53 | .about-container img{ 54 | height: 200px; 55 | width: 300px; 56 | } 57 | .line { 58 | width: 110px; 59 | height: 2px; 60 | display: inline-block; 61 | background-color: black; 62 | margin-bottom: 20px; 63 | } 64 | 65 | .desc { 66 | color: #FFF; 67 | } 68 | 69 | .about-btn{ 70 | margin: 20px auto; 71 | border: none; 72 | border-radius: 20px; 73 | padding-bottom: 10px; 74 | height: 30px; 75 | width: 150px; 76 | font-size: 0.8em; 77 | background-color: white; 78 | color: black 79 | } 80 | 81 | button:hover{ 82 | background-color: #23d5ab; 83 | color: white; 84 | background-color: rgba(0, 0, 0, 0.253); 85 | transition: 0.5s ease; 86 | } 87 | 88 | @media(max-width:800px) 89 | { 90 | .about-container{ 91 | width: 65%; 92 | margin-left: auto; 93 | margin-right: auto; 94 | text-align: center; 95 | } 96 | } 97 | 98 | @media(max-width:680px) 99 | { 100 | .about-container{ 101 | width: 70%; 102 | margin-left: auto; 103 | margin-right: auto; 104 | text-align: center; 105 | } 106 | } 107 | @media(max-width:550px) 108 | { 109 | .about-container{ 110 | width: 38rem; 111 | text-align: center; 112 | margin-left: auto; 113 | margin-right: auto; 114 | } 115 | } -------------------------------------------------------------------------------- /about/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Todolist 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 47 | 48 | 49 |
50 |
51 |
52 | 53 |
54 |

About

55 |
56 | 57 |

58 | Having a list of everything you need to do written down in one place means you shouldn’t forget anything important. By prioritising the tasks in the list you plan the order in which you’re going to do them and can quickly see what needs your immediate attention and what tasks you can leave until a little later.

59 |

Features of this application : 60 |

    61 | 62 | Add your tasks, 63 | Delete your completed tasks & 64 | Edit your tasks. 65 |
66 | 67 |

68 | 69 | 70 | 71 |
72 | 73 |
74 | 103 | 104 | -------------------------------------------------------------------------------- /images/4380.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharanya-mitra/Todolist/19e805a59068029930fd2f6a2bed1617f3ec2ed9/images/4380.jpg -------------------------------------------------------------------------------- /images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharanya-mitra/Todolist/19e805a59068029930fd2f6a2bed1617f3ec2ed9/images/check.png -------------------------------------------------------------------------------- /images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharanya-mitra/Todolist/19e805a59068029930fd2f6a2bed1617f3ec2ed9/images/edit.png -------------------------------------------------------------------------------- /images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharanya-mitra/Todolist/19e805a59068029930fd2f6a2bed1617f3ec2ed9/images/favicon.png -------------------------------------------------------------------------------- /images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharanya-mitra/Todolist/19e805a59068029930fd2f6a2bed1617f3ec2ed9/images/plus.png -------------------------------------------------------------------------------- /images/todo.svg: -------------------------------------------------------------------------------- 1 | 3 | 207 | 222 | 239 | 255 | 268 | 306 | 324 | 358 | 386 | 419 | 439 | 459 | 491 | 506 | 520 | 530 | 545 | 552 | 560 | 568 | 574 | 582 | 588 | 595 | 602 | 610 | 618 | 626 | 634 | 641 | 647 | 653 | 677 | 683 | 689 | 695 | 708 | 720 | 731 | -------------------------------------------------------------------------------- /images/trash1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharanya-mitra/Todolist/19e805a59068029930fd2f6a2bed1617f3ec2ed9/images/trash1.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Todolist 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 46 | 47 |
48 | 49 |
50 | 51 |
52 |

Sharanya's To-do list

53 |
54 | 55 | 56 |
57 | 61 |

Your Tasks :

62 |

Please enter a to-do item!

63 |
64 |
    65 |
    66 |
    67 | 68 |
    69 | 70 |
    71 | 72 | 73 | 74 |
    75 |
    76 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- 1 | const errorMsg = document.querySelector(".err-msg"); 2 | const todotInput = document.querySelector(".todoInput"); 3 | const editInput = document.querySelector(".editInput"); 4 | const addbtn = document.querySelector(".btn"); 5 | const editbtn = document.getElementById("editBtn"); 6 | const todos = document.querySelector(".todos"); 7 | const editForm = document.getElementById("editForm"); 8 | const addForm = document.getElementById("addForm"); 9 | 10 | addbtn.addEventListener("click", addMe); 11 | todos.addEventListener("click",deleteCheck); 12 | 13 | function htmlEncode(str) { 14 | return String(str).replace(/[^\w. ]/gi, function(c) { 15 | return '&#' + c.charCodeAt(0) + ';'; 16 | }); 17 | } 18 | 19 | function addMe(e) { 20 | e.preventDefault(); 21 | //console.log("goat") 22 | if (todotInput.value.trim() == "") { 23 | errorMsg.style.display = "block"; 24 | setTimeout(() => { 25 | errorMsg.style.display = "none"; 26 | }, 1000); 27 | } else { 28 | let todoDiv = document.createElement("div"); 29 | todoDiv.classList.add("todoDiv"); 30 | 31 | let list = document.createElement("li"); 32 | list.innerHTML = htmlEncode(todotInput.value); 33 | list.classList.toggle("fish"); 34 | 35 | todoDiv.appendChild(list); 36 | 37 | // let editForm = document.createElement("form"); 38 | // editForm.style.display="flex"; 39 | 40 | 41 | let done = document.createElement("button"); 42 | done.innerHTML = ""; 43 | done.classList.add("done"); 44 | 45 | todoDiv.appendChild(done); 46 | 47 | let trash = document.createElement("button"); 48 | trash.innerHTML = ""; 49 | trash.classList.add("trash"); 50 | todoDiv.appendChild(trash); 51 | 52 | let edit = document.createElement("button"); 53 | edit.innerHTML = ""; 54 | edit.classList.add("edit"); 55 | todoDiv.appendChild(edit); 56 | 57 | todos.appendChild(todoDiv); 58 | 59 | todotInput.value = ""; 60 | } 61 | } 62 | 63 | function deleteCheck(e) { 64 | 65 | if (e.target.classList[0] === "trash") { 66 | let move = e.target.parentElement; 67 | 68 | move.classList.add("fall"); 69 | todos.addEventListener("transitionend", () => { 70 | move.remove(); 71 | }); 72 | } 73 | 74 | if (e.target.classList[0] === "done") { 75 | let open = e.target.parentElement; 76 | open.classList.toggle("completed"); 77 | } 78 | 79 | if (e.target.classList[0] === "edit") { 80 | let open = e.target.parentElement; 81 | open.classList.add('beingEdited'); 82 | addForm.classList.add('invisible'); 83 | editForm.classList.remove('invisible'); 84 | editbtn.addEventListener('click',()=>{ 85 | if (editInput.value.trim() == "") { 86 | errorMsg.style.display = "block"; 87 | setTimeout(() => { 88 | errorMsg.style.display = "none"; 89 | }, 1000); 90 | } 91 | else{ 92 | open.classList.remove('beingEdited'); 93 | addForm.classList.remove('invisible'); 94 | editForm.classList.add('invisible'); 95 | open.getElementsByClassName('fish')[0].innerHTML = editInput.value; 96 | } 97 | }) 98 | } 99 | } 100 | 101 | function dark(){ 102 | var elem= document.body; 103 | elem.classList.toggle("dark-mode"); 104 | var mode = document.getElementById("mode"); 105 | if(mode.classList == "fa-sharp fa-solid fa-moon") 106 | { 107 | mode.classList.add("fa-sun"); 108 | mode.classList.remove("fa-moon"); 109 | } 110 | else 111 | { 112 | mode.classList.toggle("fa-moon"); 113 | mode.classList.remove("fa-sun"); 114 | } 115 | } 116 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "todolist", 3 | "version": "1.0.0", 4 | "description": "\r A straightforward web application, allowing you to save your daily chores so you won't forget anything.\r
    \r
    ", 5 | "main": "main.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/sayamalvi/Todolist.git" 12 | }, 13 | "author": "Rick-mad-lab(Sharanya Mitra)", 14 | "license": "MIT", 15 | "bugs": { 16 | "url": "https://github.com/sayamalvi/Todolist/issues" 17 | }, 18 | "homepage": "https://github.com/sayamalvi/Todolist#readme" 19 | } 20 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap"); 2 | @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;1,300&family=Scope+One&display=swap'); 3 | 4 | body { 5 | font-size: 16px; 6 | color: #e5e0e0; 7 | background: rgb(2,0,36); 8 | background: linear-gradient(30deg, rgba(2,0,36,1) 0%, rgb(92, 92, 187) 19%, rgba(0,212,255,1) 100%); 9 | font-family: 'Poppins', sans-serif; 10 | overflow-x: hidden; 11 | } 12 | 13 | main { 14 | display: flex; 15 | justify-content: center; 16 | align-items: flex-start; 17 | height: auto; 18 | } 19 | .container{ 20 | text-align: center; 21 | width: 100%; 22 | /* height: 100vh; */ 23 | 24 | padding-top: 50px; 25 | /* display: flex; 26 | justify-content: center; */ 27 | } 28 | 29 | section { 30 | padding: 50px 10px; 31 | display: flex; 32 | flex-direction: column; 33 | } 34 | 35 | header h2 { 36 | text-align: center; 37 | text-transform: uppercase; 38 | padding: 15px; 39 | margin: 10px; 40 | } 41 | 42 | form { 43 | display: flex; 44 | justify-content: center; 45 | align-items: center; 46 | margin-left: 60px; 47 | } 48 | 49 | #your-tasks { 50 | font-size: 20px; 51 | padding-top: 30px; 52 | } 53 | .toggle-dark { 54 | display: block; 55 | padding: 15px; 56 | margin: auto; 57 | border-radius: 10px; 58 | border: none; 59 | float: right; 60 | background-color: #60a0b7; 61 | font-size: 22px; 62 | box-shadow: 2px 2px 13px rgb(19.17,17); 63 | } 64 | 65 | .dark-mode { 66 | /* background-color: #FF3CAC; 67 | background-image: linear-gradient(225deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%); */ 68 | background: rgb(0,0,0); 69 | background: linear-gradient(45deg, rgba(0,0,0,1) 26%, rgba(0,6,255,1) 74%, rgba(0,187,224,1) 100%); 70 | color: white; 71 | } 72 | 73 | .toggle-dark:hover { 74 | background-color: #8e3e75; 75 | cursor: pointer; 76 | transform: scale(1.08); 77 | } 78 | 79 | .toggle-dark:active { 80 | background-color: #b736d4 !important; 81 | box-shadow: 0 5px #666; 82 | transform: translateY(4px); 83 | } 84 | 85 | .todoInput { 86 | height: 45px; 87 | padding: 1px 20px; 88 | font-size: 16px; 89 | border: none; 90 | border-radius: 20px; 91 | margin-right: 10px; 92 | margin-left: -80px; 93 | } 94 | 95 | #addForm{ 96 | padding-top: 30px; 97 | } 98 | 99 | .add { 100 | font-size: 38px; 101 | border: none; 102 | color: #1b80c3; 103 | border-radius: 10px; 104 | } 105 | 106 | .add:hover{ 107 | background-color: #0000ff; 108 | } 109 | 110 | .card { 111 | border: 1px solid #999; 112 | border-radius: 3px; 113 | height: 200px; 114 | width: 500px; 115 | box-shadow: 0 8px 12px 0 lightblue, 0 6px 20px 0 lightblue; 116 | } 117 | 118 | .card:hover{ 119 | background-color: lightblue; 120 | } 121 | 122 | .todos { 123 | padding: 15px 0px; 124 | list-style: none; 125 | text-align: center; 126 | } 127 | 128 | .add:hover { 129 | cursor: pointer; 130 | } 131 | 132 | .add:active { 133 | cursor: pointer; 134 | box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(51, 51, 51) 0px 0px 0px 3px; 135 | scale: 0.9; 136 | } 137 | 138 | .todoDiv { 139 | background-color: white; 140 | color: #000; 141 | font-size: 14px; 142 | font-weight: bold; 143 | padding: 6px 4px; 144 | margin-bottom: 15px; 145 | display: flex; 146 | justify-content: space-between; 147 | align-items: center; 148 | transition: all 0.5s ease; 149 | border-radius: 20px; 150 | } 151 | 152 | .fish { 153 | flex: 1; 154 | max-width: 18rem; 155 | overflow-x: scroll; 156 | overflow-y: hidden; 157 | min-height: fit-content; 158 | -webkit-user-select: none; 159 | -moz-user-select: none; 160 | -ms-user-select: none; 161 | } 162 | .fish::-webkit-scrollbar { 163 | width: 5px; 164 | } 165 | 166 | /* @media screen and (max-width: 480px) { 167 | .fish { 168 | max-width: 12rem; 169 | } 170 | } 171 | @media screen and (min-width: 720px) { 172 | .fish { 173 | max-width: 20rem; 174 | } 175 | } */ 176 | 177 | .done { 178 | background-color: transparent; 179 | padding: 4px 6px; 180 | color: #fff; 181 | border: none; 182 | margin-right: 3px; 183 | outline: none; 184 | } 185 | 186 | .trash { 187 | background-color: transparent; 188 | padding: 4px 6px; 189 | color: #fff; 190 | border: none; 191 | outline: none; 192 | } 193 | 194 | .edit { 195 | background-color: transparent; 196 | padding: 4px 6px; 197 | color: #fff; 198 | border: none; 199 | outline: none; 200 | } 201 | 202 | .done:hover, 203 | .trash:hover, 204 | .edit:hover { 205 | scale: 1.1; 206 | cursor: pointer; 207 | } 208 | 209 | .completed { 210 | text-decoration: line-through; 211 | opacity: 0.6; 212 | } 213 | 214 | .fall { 215 | transform: translateY(8rem) rotateZ(20deg); 216 | opacity: 0; 217 | } 218 | 219 | img { 220 | pointer-events: none; 221 | width: 20px; 222 | } 223 | 224 | .err-msg { 225 | display: none; 226 | font-weight: bolder; 227 | font-size: 20px; 228 | color: white; 229 | /* margin-left: 50px; */ 230 | text-align: center; 231 | } 232 | 233 | li { 234 | list-style-type: none; 235 | padding-left: 20px; 236 | text-transform: capitalize; 237 | } 238 | 239 | .invisible { 240 | display: none; 241 | } 242 | 243 | .editInput { 244 | height: 45px; 245 | padding: 1px 20px; 246 | outline-color: #073664; 247 | outline-width: 2px; 248 | font-size: 16px; 249 | border: none; 250 | border-radius: 20px; 251 | margin-right: 10px; 252 | } 253 | 254 | .beingEdited { 255 | box-shadow: 0px 0px 3px 3px lightblue; 256 | } 257 | 258 | .wrapper{ 259 | background: #fff; 260 | max-width: 400px; 261 | width: 100%; 262 | margin: auto; 263 | padding: 25px; 264 | box-shadow: 0 15px 25px rgba(129, 124, 124, 0.2); 265 | height: 300px; 266 | border-radius: 5px; 267 | backdrop-filter: blur(14px); 268 | background-color: rgba(255, 255, 255, 0.2); 269 | padding-top: initial; 270 | height: fit-content; 271 | } 272 | h2{ 273 | text-align: center; 274 | } 275 | /* new UI and animation changes */ 276 | .brand-name{ 277 | color: #000; 278 | font-weight: 600; 279 | transition: 0.5s; 280 | letter-spacing: 1px; 281 | margin-left: 20px; 282 | display: flex; 283 | } 284 | .brand-image{ 285 | width: 30px; 286 | height: 30px; 287 | } 288 | .brand-name:hover{ 289 | color: #1b80c3; 290 | letter-spacing: 2px; 291 | filter: drop-shadow(0 6px 2px #1b80c3); 292 | } 293 | .navbar{ 294 | background-color: #ffffff; 295 | padding: 15px; 296 | } 297 | .top-right-icon{ 298 | color: #073664; 299 | } 300 | .top-right-btn{ 301 | background-color: #fff; 302 | transition: 0.5s; 303 | } 304 | .top-right-btn:hover{ 305 | /* background-color: #d8d8d8; */ 306 | filter: drop-shadow(4px 8px 2px #1b80c3); 307 | border: 2px dashed #000; 308 | } 309 | .main-card{ 310 | background-color: rgba(255, 255, 255, 0.366); 311 | transition: 1s; 312 | border-radius: 50px ; 313 | min-height: fit-content; 314 | /* box-shadow: 20px 20px #784BA0; */ 315 | box-shadow:5px 5px 10px #0000003d; 316 | transition: 0.5s; 317 | } 318 | .main-card:hover{ 319 | filter: hue-rotate(360deg); 320 | outline: none; 321 | 322 | } 323 | .card-title{ 324 | text-transform: uppercase; 325 | 326 | font-weight: 550; 327 | font-family: "Poppins"; 328 | font-weight:700; 329 | } 330 | .input1{ 331 | outline: none; 332 | border: 2px solid rgb(255, 255, 255); 333 | background-color: rgba(0, 0, 0, 0); 334 | transition: 0.5s; 335 | } 336 | .input1:hover{ 337 | transform: scale(1.01); 338 | border-color: #0000ff; 339 | box-shadow: 5px 5px #073664; 340 | } 341 | ::placeholder { 342 | color: #fff; 343 | text-transform: capitalize; 344 | } 345 | .add{ 346 | transition: 0.5s; 347 | 348 | } 349 | .add:hover,.add:active{ 350 | border-radius: 40%; 351 | background-color: #00f2ff; 352 | box-shadow: 5px 5px #4284c6; 353 | } 354 | .drk-btn{ 355 | background-color: #2b92db00; 356 | transition: 0.5s; 357 | } 358 | .drk-btn:hover{ 359 | background-color: #0089e4; 360 | } 361 | .done, .trash, .edit{ 362 | transition: 0.3s; 363 | } 364 | .fish{ 365 | /* background-color: #000; */ 366 | text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.205); 367 | } 368 | .done:hover, .trash:hover, .edit:hover{ 369 | transform: scale(1.5); 370 | } 371 | #your-tasks{ 372 | font-weight: 700; 373 | /* text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4); */ 374 | } 375 | .err-msg{ 376 | padding-top: 8rem; 377 | color: #000; 378 | } 379 | 380 | .footer{ 381 | height: 200px; 382 | width:100%; 383 | text-align: center; 384 | background-color: rgba(255, 255, 255, .15); 385 | backdrop-filter: blur(7px); 386 | } 387 | 388 | .social{ 389 | font-size: 30px; 390 | color: #fcfcfc; 391 | float: right; 392 | margin-right: 15px; 393 | margin-top: -35px; 394 | background: #000; 395 | padding:4px 10px ; 396 | border-radius: 70%; 397 | } 398 | 399 | .footer-desc a{ 400 | color: #0000ff; 401 | } 402 | .footer-social{ 403 | margin: auto; 404 | width: 100%; 405 | padding: 10px; 406 | margin-top: 40px; 407 | } 408 | .brand{ 409 | margin-top: -20px; 410 | width: 60px; 411 | height: 60px; 412 | } 413 | #linkedin:hover{ 414 | color: #fcfcfc; 415 | background-color: #04669A; 416 | } 417 | #github:hover{ 418 | color: #fcfcfc; 419 | background-color: #000; 420 | } 421 | #twitter:hover{ 422 | color: #fcfcfc; 423 | background-color: #00acee; 424 | } 425 | #insta:hover{ 426 | color: #fcfcfc; 427 | background: linear-gradient( 428 | 45deg, 429 | #f09433 0%, 430 | #e6683c 25%, 431 | #dc2743 50%, 432 | #cc2366 75%, 433 | #bc1888 100% 434 | ); 435 | } 436 | .span{ 437 | font-size: 18px; 438 | } 439 | .footer-desc{ 440 | font-size: 12px; 441 | margin-top: 5px; 442 | } 443 | /* Navbar changes */ 444 | ul li{ 445 | display: inline-block; 446 | } 447 | .item-sec{ 448 | display: flex; 449 | justify-content: space-between; 450 | align-items: center; 451 | } 452 | /* Responsive */ 453 | 454 | @media (max-width:775px) { 455 | .header{ 456 | font-size: 15px; 457 | } 458 | } 459 | @media (max-width:450px) { 460 | .header{ 461 | font-size: 12px; 462 | padding: 2px 2px 2px 1px; 463 | } 464 | .navbar-nav { 465 | margin: 7.5px -48px; 466 | } 467 | .row{ 468 | font-size: 20px; 469 | } 470 | .brand{ 471 | width: 40px; 472 | height: 40px; 473 | } 474 | .brand-name{ 475 | margin: 0;; 476 | } 477 | } 478 | --------------------------------------------------------------------------------