├── .vscode └── settings.json ├── LICENSE ├── README.md ├── advanced-contribution.md ├── app.js ├── banner.js ├── cardDetails.json ├── contribution.md ├── image ├── branch-name.png ├── clone.png ├── commit.PNG ├── copy-url.png ├── design-files │ └── logo │ │ ├── icon-menu.svg │ │ ├── sc-logo-favicon-darkmode.ico │ │ ├── sc-logo-favicon-lightmode.ico │ │ └── simple-contribution.svg ├── fork.PNG ├── publish-branch.jpeg ├── pull-request.png ├── star.PNG └── vscode-open.jpeg ├── index.html ├── scss └── navbar-btn.scss └── style ├── banner.css └── style.css /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyyalex/simple-contribution/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyyalex/simple-contribution/HEAD/README.md -------------------------------------------------------------------------------- /advanced-contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyyalex/simple-contribution/HEAD/advanced-contribution.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyyalex/simple-contribution/HEAD/app.js -------------------------------------------------------------------------------- /banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyyalex/simple-contribution/HEAD/banner.js -------------------------------------------------------------------------------- /cardDetails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyyalex/simple-contribution/HEAD/cardDetails.json -------------------------------------------------------------------------------- /contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyyalex/simple-contribution/HEAD/contribution.md -------------------------------------------------------------------------------- /image/branch-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyyalex/simple-contribution/HEAD/image/branch-name.png -------------------------------------------------------------------------------- /image/clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyyalex/simple-contribution/HEAD/image/clone.png -------------------------------------------------------------------------------- /image/commit.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyyalex/simple-contribution/HEAD/image/commit.PNG -------------------------------------------------------------------------------- /image/copy-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyyalex/simple-contribution/HEAD/image/copy-url.png -------------------------------------------------------------------------------- /image/design-files/logo/icon-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyyalex/simple-contribution/HEAD/image/design-files/logo/icon-menu.svg -------------------------------------------------------------------------------- /image/design-files/logo/sc-logo-favicon-darkmode.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyyalex/simple-contribution/HEAD/image/design-files/logo/sc-logo-favicon-darkmode.ico -------------------------------------------------------------------------------- /image/design-files/logo/sc-logo-favicon-lightmode.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyyalex/simple-contribution/HEAD/image/design-files/logo/sc-logo-favicon-lightmode.ico -------------------------------------------------------------------------------- /image/design-files/logo/simple-contribution.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyyalex/simple-contribution/HEAD/image/design-files/logo/simple-contribution.svg -------------------------------------------------------------------------------- /image/fork.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyyalex/simple-contribution/HEAD/image/fork.PNG -------------------------------------------------------------------------------- /image/publish-branch.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyyalex/simple-contribution/HEAD/image/publish-branch.jpeg -------------------------------------------------------------------------------- /image/pull-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyyalex/simple-contribution/HEAD/image/pull-request.png -------------------------------------------------------------------------------- /image/star.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyyalex/simple-contribution/HEAD/image/star.PNG -------------------------------------------------------------------------------- /image/vscode-open.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyyalex/simple-contribution/HEAD/image/vscode-open.jpeg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyyalex/simple-contribution/HEAD/index.html -------------------------------------------------------------------------------- /scss/navbar-btn.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyyalex/simple-contribution/HEAD/scss/navbar-btn.scss -------------------------------------------------------------------------------- /style/banner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyyalex/simple-contribution/HEAD/style/banner.css -------------------------------------------------------------------------------- /style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyyalex/simple-contribution/HEAD/style/style.css --------------------------------------------------------------------------------