{"id":16643839,"url":"https://github.com/susmita-dey/css-art-projects","last_synced_at":"2025-08-27T04:17:18.276Z","repository":{"id":104069038,"uuid":"450054456","full_name":"Susmita-Dey/CSS-Art-Projects","owner":"Susmita-Dey","description":"Some cool mini projects made using CSS Art","archived":false,"fork":false,"pushed_at":"2022-03-28T14:56:15.000Z","size":17,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-18T17:32:07.811Z","etag":null,"topics":["css","css-animations","css-art","css3"],"latest_commit_sha":null,"homepage":"","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Susmita-Dey.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":["https://www.buymeacoffee.com/susmitadey"]}},"created_at":"2022-01-20T10:38:59.000Z","updated_at":"2022-10-09T13:41:23.000Z","dependencies_parsed_at":null,"dependency_job_id":"6aae4cbf-dbf0-4177-907c-b8eea1427a2b","html_url":"https://github.com/Susmita-Dey/CSS-Art-Projects","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Susmita-Dey%2FCSS-Art-Projects","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Susmita-Dey%2FCSS-Art-Projects/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Susmita-Dey%2FCSS-Art-Projects/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Susmita-Dey%2FCSS-Art-Projects/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Susmita-Dey","download_url":"https://codeload.github.com/Susmita-Dey/CSS-Art-Projects/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243172106,"owners_count":20247887,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css","css-animations","css-art","css3"],"created_at":"2024-10-12T08:09:39.782Z","updated_at":"2025-03-12T07:16:25.889Z","avatar_url":"https://github.com/Susmita-Dey.png","language":"CSS","funding_links":["https://www.buymeacoffee.com/susmitadey"],"categories":[],"sub_categories":[],"readme":"# CSS-Art-Projects\nThis repository contains some cool CSS Art.\n\n# 💥 How to Contribute\n\n[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](https://github.com/Susmita-Dey/CSS-Art-Projects/pulls)\n[![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.png?v=103)](https://github.com/ellerbrock/open-source-badges/)\n\n- Take a look at the existing [Issues](https://github.com/Susmita-Dey/CSS-Art-Projects/issues) or [create a new issue](https://github.com/Susmita-Dey/CSS-Art-Projects/issues/new/choose)!\n- [Fork the Repo](https://github.com/Susmita-Dey/CSS-Art-Projects/fork), create a branch for any issue that you are working on and commit your work.\n- Create a **[Pull Request](https://github.com/Susmita-Dey/CSS-Art-Projects/compare)** (_PR_), which will be promptly reviewed and given suggestions for improvements by the community.\n- Add screenshots or screen captures to your Pull Request to help us understand the effects of the changes that are included in your commits.\n\n## ⭐ HOW TO MAKE A PULL REQUEST:\n\n**1.** Start by making a fork the [**CSS-Art-Projects**](https://github.com/Susmita-Dey/CSS-Art-Projects) repository. Click on the \u003ca href=\"https://github.com/Susmita-Dey/CSS-Art-Projects/fork\"\u003e\u003cimg src=\"https://i.imgur.com/G4z1kEe.png\" height=\"21\" width=\"21\"\u003e\u003c/a\u003e symbol at the top right corner.\n\n**2.** Clone your new fork of the repository:\n\n```bash\ngit clone https://github.com/\u003cyour-github-username\u003e/CSS-Art-Projects\n```\n\n**3.** Set upstream command:\n\n```bash\ngit remote add upstream https://github.com/Susmita-Dey/CSS-Art-Projects.git\n```\n\n**4.** Navigate to the new project directory:\n\n```bash\ncd CSS-Art-Projects\n```\n\n**5.** Create a new branch:\n\n```bash\ngit checkout -b YourBranchName\n```\n\n**6.** Sync your fork or local repository with the origin repository:\n\n- In your forked repository click on \"Fetch upstream\"\n- Click \"Fetch and merge\".\n\n### Alternatively, Git CLI way to Sync forked repository with origin repository:\n\n```bash\ngit fetch upstream\n```\n\n```bash\ngit merge upstream/main\n```\n\n### [Github Docs](https://docs.github.com/en/github/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-on-github) for Syncing\n\n**7.** Make your changes to the source code.\n\n**8.** Stage your changes and commit:\n\n```bash\ngit add .\n```\n\n```bash\ngit commit -m \"\u003cyour_commit_message\u003e\"\n```\n\n**9.** Push your local commits to the remote repository:\n\n```bash\ngit push origin YourBranchName\n```\n\n**10.** Create a [Pull Request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request)!\n\n**11.** **Congratulations!** You've made your first contribution! 🙌🏼\n\n\n\n## All the best! 🥇\n\n\u003cp align=\"center\"\u003e\n\n[![built with love](https://forthebadge.com/images/badges/built-with-love.svg)](https://github.com/unnati914/Care4ther-)\n\n\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsusmita-dey%2Fcss-art-projects","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsusmita-dey%2Fcss-art-projects","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsusmita-dey%2Fcss-art-projects/lists"}