├── .DS_Store ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── labels.json └── workflows │ └── issue-label.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── images ├── .DS_Store ├── bg1.png ├── bg3.jpg ├── fav.png └── logoSpaceXMK.png ├── index.html ├── index.php ├── js ├── app.js ├── main.js ├── particles.js ├── scroll.js └── vanilla-tilt.js ├── ll3.gif └── main.css /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankohlii/spacex-launch-data/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankohlii/spacex-launch-data/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankohlii/spacex-launch-data/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankohlii/spacex-launch-data/HEAD/.github/labels.json -------------------------------------------------------------------------------- /.github/workflows/issue-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankohlii/spacex-launch-data/HEAD/.github/workflows/issue-label.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankohlii/spacex-launch-data/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankohlii/spacex-launch-data/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankohlii/spacex-launch-data/HEAD/README.md -------------------------------------------------------------------------------- /images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankohlii/spacex-launch-data/HEAD/images/.DS_Store -------------------------------------------------------------------------------- /images/bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankohlii/spacex-launch-data/HEAD/images/bg1.png -------------------------------------------------------------------------------- /images/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankohlii/spacex-launch-data/HEAD/images/bg3.jpg -------------------------------------------------------------------------------- /images/fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankohlii/spacex-launch-data/HEAD/images/fav.png -------------------------------------------------------------------------------- /images/logoSpaceXMK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankohlii/spacex-launch-data/HEAD/images/logoSpaceXMK.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankohlii/spacex-launch-data/HEAD/index.html -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankohlii/spacex-launch-data/HEAD/js/app.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankohlii/spacex-launch-data/HEAD/js/main.js -------------------------------------------------------------------------------- /js/particles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankohlii/spacex-launch-data/HEAD/js/particles.js -------------------------------------------------------------------------------- /js/scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankohlii/spacex-launch-data/HEAD/js/scroll.js -------------------------------------------------------------------------------- /js/vanilla-tilt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankohlii/spacex-launch-data/HEAD/js/vanilla-tilt.js -------------------------------------------------------------------------------- /ll3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankohlii/spacex-launch-data/HEAD/ll3.gif -------------------------------------------------------------------------------- /main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankohlii/spacex-launch-data/HEAD/main.css --------------------------------------------------------------------------------