├── .gitignore
├── LICENSE.md
├── README.md
├── ScreenShot
├── C.JPG
├── Capture.JPG
└── UI.JPG
├── index.html
├── main.css
└── script.js
/.gitignore:
--------------------------------------------------------------------------------
1 | *.md
2 | /ScreenShot
3 | .gitignore
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2020 Code-Recursion
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 | # UI-Calculator
2 | Simple Calculator With Clean UI.
3 |
4 | view live version
5 | ## `Screen Shot`
6 |
7 |
8 | ### Project Structure
9 | .
10 | ├── screenshot
11 | | └── C.JPG
12 | | └── Capture.JPG
13 | | └── UI.JPG
14 | ├── .gitignore
15 | ├── LICENSE.md
16 | ├── Readme.md
17 | ├── index.html
18 | ├── main.css
19 | ├── script.js
20 | └── ...
21 |
22 | ### Contributing :tada:
23 |
24 | Being a project of an open source competition, we believe in the power of PRs as that's what makes any project awesome and inspires us to create and learn. Any contributions you make are **greatly appreciated**.
25 |
26 | 1. Fork the Project.
27 | 2. Clone the Repo .
28 | 2. Create your changes in the local repo .
29 | 3. Commit your Changes with a proper commit message (`git commit -m '...Your Message...'`).
30 | 4. Push to the Branch .
31 | 5. Add a live link site hosted on github pages.
32 | 6. Open a Pull Request mentioniong the issue number on commit message or create your own issue.
33 |
34 | ### Contact :email:
35 | For any query or build issues feel free to reach out the maintainers:
36 | [Ajay](https://github.com/Code-Recursion)
37 |
38 | ### License
39 |
40 | Distributed under the MIT License. See [`LICENSE`](https://github.com/Code-Recursion/UI-Calculator/blob/master/LICENSE.md) for more information.
41 |
--------------------------------------------------------------------------------
/ScreenShot/C.JPG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Code-Recursion/UI-Calculator/667905d32c6aa19f221a70161683e7eb8ec5a66e/ScreenShot/C.JPG
--------------------------------------------------------------------------------
/ScreenShot/Capture.JPG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Code-Recursion/UI-Calculator/667905d32c6aa19f221a70161683e7eb8ec5a66e/ScreenShot/Capture.JPG
--------------------------------------------------------------------------------
/ScreenShot/UI.JPG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Code-Recursion/UI-Calculator/667905d32c6aa19f221a70161683e7eb8ec5a66e/ScreenShot/UI.JPG
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |