├── .editorconfig ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── Assets ├── Armenia.png ├── Austria.png ├── Awesome Dots.gif ├── Bahamas.png ├── Bangladesh.png ├── Battery.gif ├── Belgium.png ├── Bouncing Ball.gif ├── Box Loader.gif ├── BoxBreathing.gif ├── Brazil.png ├── Bulgaria.png ├── Cameroon.png ├── Canada.png ├── Clock.gif ├── Colombia.png ├── CzechRepublic.png ├── Denmark.png ├── Dot Loader.gif ├── England.png ├── Fill up.gif ├── Finland.png ├── France.png ├── Germany.png ├── Greece.png ├── Hamburger.png ├── Hungary.png ├── India.png ├── Indonesia.png ├── Ireland.png ├── Iron Factory.gif ├── Israel.png ├── Italy.png ├── IvoryCoast.png ├── Japan.png ├── Laos.png ├── Latvia.png ├── Lithuania.png ├── Magnifying Glass.png ├── Melting Ice Cream.gif ├── Netherlands.png ├── Nigeria.png ├── Pakistan.png ├── Play Loader.gif ├── Poland.png ├── PuertoRico.png ├── Revolving Circles.gif ├── Revolving Dots.gif ├── Ripple Effect.gif ├── Russia.png ├── Senegal.png ├── SierraLeone.png ├── Simple Spinner.gif ├── Simple Text Loader.gif ├── South Africa.png ├── Suriname.png ├── Sweden.png ├── Switzerland.png ├── Syria.png ├── Taiwan.png ├── Texas.png ├── Thailand.png ├── Turkey.png ├── UK.png ├── USA.png ├── Yemen.png ├── chile.PNG └── instagram.jpg ├── Designs ├── Battery.html ├── Hamburger.html ├── Instagram New Logo.html └── Magnifying Glass.html ├── Flags ├── Armenia.html ├── Austria.html ├── Bahamas.html ├── Bangladesh.html ├── Belgium.html ├── Brazil.html ├── Bulgaria.html ├── Cameroon.html ├── Canada.html ├── Colombia.html ├── CzechRepublic.html ├── Denmark.html ├── England.html ├── Finland.html ├── France.html ├── Germany.html ├── Greece.html ├── Hungary.html ├── India.html ├── Indonesia.html ├── Ireland.html ├── Israel.html ├── Italy.html ├── IvoryCoast.html ├── Japan.html ├── Laos.html ├── Latvia.html ├── Lithuania.html ├── Netherlands.html ├── Nigeria.html ├── Poland.html ├── PuertoRico.html ├── Russia.html ├── Senegal.html ├── SierraLeone.html ├── South Africa.html ├── Sweden.html ├── Switzerland.html ├── Syria.html ├── Taiwan.html ├── Texas.html ├── Thailand.html ├── Turkey.html ├── UK.html ├── USA.html ├── Yemen.html ├── chile.html ├── pakistan.html └── suriname.html ├── LICENSE ├── Loaders ├── Awesome Dots.html ├── Bouncing Ball.html ├── Box Loader.html ├── Clock.html ├── Dot Loader.html ├── Fill up.html ├── Iron Factory.html ├── Melting Ice Cream.html ├── Play Loader.html ├── Revolving Circles.html ├── Revolving Dots.html ├── Ripple Effect.html ├── Simple Spinner.html └── Simple Text Loader.html ├── README.md └── Tools └── BoxBreathing.html /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | end_of_line = lf 5 | insert_final_newline = true 6 | 7 | [*.html] 8 | indent_style = space 9 | indent_size = 2 10 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribution Guidelines 2 | 3 | 1. Please contribute **what you code** and not **someone else's**. 4 | 2. Only **use of 1 div tag is allowed**. 5 | 3. **Please check** whether another person has sent the **pull request** for same idea/issue before creating one. 6 | 4. No JavaScript allowed. 7 | 5. No **SVG / Images** allowed. 8 | 6. Open a pull request explaining what that code does with a screenshot. 9 | 7. Please **update README.md** with your **"Project name"**, **"Your Name/Handle"** with link to your Github profile and **image/gif** of your div element in **alphabetical order**. 10 | 8. If you're adding a new section, please create a new table for it and update it like other tables already created. 11 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | ## Description 13 | 14 | 15 | ### System settings 16 | 17 | - Browser Used: 18 | 19 | ### Error 20 | 21 | 22 | ### Expected behaviour 23 | 24 | 25 | ## Steps to recreate 26 | 27 | 28 | ## People to notify 29 | 30 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 8 | 9 | ## Description of new feature, or changes 10 | 11 | 12 | ## Checklist 13 | 14 | - [ ] Your branch is up-to-date with the base branch 15 | - [ ] You've read the [Contributions](https://github.com/manrajgrover/SingleDivProject/blob/master/.github/CONTRIBUTING.md) guidelines. 16 | 17 | ## Related Issues and Discussions 18 | 19 | 20 | 21 | ## People to notify 22 | 23 | -------------------------------------------------------------------------------- /Assets/Armenia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Armenia.png -------------------------------------------------------------------------------- /Assets/Austria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Austria.png -------------------------------------------------------------------------------- /Assets/Awesome Dots.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Awesome Dots.gif -------------------------------------------------------------------------------- /Assets/Bahamas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Bahamas.png -------------------------------------------------------------------------------- /Assets/Bangladesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Bangladesh.png -------------------------------------------------------------------------------- /Assets/Battery.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Battery.gif -------------------------------------------------------------------------------- /Assets/Belgium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Belgium.png -------------------------------------------------------------------------------- /Assets/Bouncing Ball.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Bouncing Ball.gif -------------------------------------------------------------------------------- /Assets/Box Loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Box Loader.gif -------------------------------------------------------------------------------- /Assets/BoxBreathing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/BoxBreathing.gif -------------------------------------------------------------------------------- /Assets/Brazil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Brazil.png -------------------------------------------------------------------------------- /Assets/Bulgaria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Bulgaria.png -------------------------------------------------------------------------------- /Assets/Cameroon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Cameroon.png -------------------------------------------------------------------------------- /Assets/Canada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Canada.png -------------------------------------------------------------------------------- /Assets/Clock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Clock.gif -------------------------------------------------------------------------------- /Assets/Colombia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Colombia.png -------------------------------------------------------------------------------- /Assets/CzechRepublic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/CzechRepublic.png -------------------------------------------------------------------------------- /Assets/Denmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Denmark.png -------------------------------------------------------------------------------- /Assets/Dot Loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Dot Loader.gif -------------------------------------------------------------------------------- /Assets/England.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/England.png -------------------------------------------------------------------------------- /Assets/Fill up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Fill up.gif -------------------------------------------------------------------------------- /Assets/Finland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Finland.png -------------------------------------------------------------------------------- /Assets/France.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/France.png -------------------------------------------------------------------------------- /Assets/Germany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Germany.png -------------------------------------------------------------------------------- /Assets/Greece.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Greece.png -------------------------------------------------------------------------------- /Assets/Hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Hamburger.png -------------------------------------------------------------------------------- /Assets/Hungary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Hungary.png -------------------------------------------------------------------------------- /Assets/India.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/India.png -------------------------------------------------------------------------------- /Assets/Indonesia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Indonesia.png -------------------------------------------------------------------------------- /Assets/Ireland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Ireland.png -------------------------------------------------------------------------------- /Assets/Iron Factory.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Iron Factory.gif -------------------------------------------------------------------------------- /Assets/Israel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Israel.png -------------------------------------------------------------------------------- /Assets/Italy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Italy.png -------------------------------------------------------------------------------- /Assets/IvoryCoast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/IvoryCoast.png -------------------------------------------------------------------------------- /Assets/Japan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Japan.png -------------------------------------------------------------------------------- /Assets/Laos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Laos.png -------------------------------------------------------------------------------- /Assets/Latvia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Latvia.png -------------------------------------------------------------------------------- /Assets/Lithuania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Lithuania.png -------------------------------------------------------------------------------- /Assets/Magnifying Glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Magnifying Glass.png -------------------------------------------------------------------------------- /Assets/Melting Ice Cream.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Melting Ice Cream.gif -------------------------------------------------------------------------------- /Assets/Netherlands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Netherlands.png -------------------------------------------------------------------------------- /Assets/Nigeria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Nigeria.png -------------------------------------------------------------------------------- /Assets/Pakistan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Pakistan.png -------------------------------------------------------------------------------- /Assets/Play Loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Play Loader.gif -------------------------------------------------------------------------------- /Assets/Poland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Poland.png -------------------------------------------------------------------------------- /Assets/PuertoRico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/PuertoRico.png -------------------------------------------------------------------------------- /Assets/Revolving Circles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Revolving Circles.gif -------------------------------------------------------------------------------- /Assets/Revolving Dots.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Revolving Dots.gif -------------------------------------------------------------------------------- /Assets/Ripple Effect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Ripple Effect.gif -------------------------------------------------------------------------------- /Assets/Russia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Russia.png -------------------------------------------------------------------------------- /Assets/Senegal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Senegal.png -------------------------------------------------------------------------------- /Assets/SierraLeone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/SierraLeone.png -------------------------------------------------------------------------------- /Assets/Simple Spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Simple Spinner.gif -------------------------------------------------------------------------------- /Assets/Simple Text Loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Simple Text Loader.gif -------------------------------------------------------------------------------- /Assets/South Africa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/South Africa.png -------------------------------------------------------------------------------- /Assets/Suriname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Suriname.png -------------------------------------------------------------------------------- /Assets/Sweden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Sweden.png -------------------------------------------------------------------------------- /Assets/Switzerland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Switzerland.png -------------------------------------------------------------------------------- /Assets/Syria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Syria.png -------------------------------------------------------------------------------- /Assets/Taiwan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Taiwan.png -------------------------------------------------------------------------------- /Assets/Texas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Texas.png -------------------------------------------------------------------------------- /Assets/Thailand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Thailand.png -------------------------------------------------------------------------------- /Assets/Turkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Turkey.png -------------------------------------------------------------------------------- /Assets/UK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/UK.png -------------------------------------------------------------------------------- /Assets/USA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/USA.png -------------------------------------------------------------------------------- /Assets/Yemen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/Yemen.png -------------------------------------------------------------------------------- /Assets/chile.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/chile.PNG -------------------------------------------------------------------------------- /Assets/instagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manrajgrover/SingleDivProject/ab22d80c2b0b7bf12e30d02287319932af7e5bc6/Assets/instagram.jpg -------------------------------------------------------------------------------- /Designs/Battery.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |