├── .github ├── pull_request_template.md └── reviewers.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── assets ├── icons │ └── moon.png └── img │ ├── OClogo.jpg │ ├── Puja.jpg │ ├── geekhavenlogo.svg │ ├── header-bg-dark.jpg │ ├── header_bg.jpg │ ├── iiitalogo.jpg │ ├── mentors │ ├── RE.jpg │ ├── anan.jpg │ ├── anupam.JPG │ ├── debck.jpg │ ├── harsh.jpg │ ├── jogendra.JPG │ ├── joglekar.jpg │ ├── mentor.jpg │ ├── niharika.jpeg │ ├── pradeep.jpg │ ├── shivansh_tiwari.jpg │ ├── shreyansh.jpg │ └── sneha.JPG │ ├── opencode-banner.jpg │ ├── opencode_logo_61n_icon.ico │ ├── participants │ ├── Abhaya.jpg │ ├── Abhinav2023.jpg │ ├── Abhishek.jpg │ ├── Achint.jpg │ ├── AkshayKalola.jpg │ ├── Anupam.jpg │ ├── Astha.jpg │ ├── B3ingALearner.jpg │ ├── DSC_0113_02.jpg │ ├── Euclid.jpg │ ├── Hardik.jpg │ ├── IMG_20180728_162500.jpg │ ├── Neeraj.jpg │ ├── Rajat.jpg │ ├── Saakshi.jpg │ ├── Vishnuk7.jpg │ ├── Wwar_lock.jpeg │ ├── adil.jpg │ ├── aman.jpg │ ├── amit.jpg │ ├── anmol.jpg │ ├── ashish4321.jpg │ ├── bindu.jpg │ ├── blurry.jpg │ ├── code.jpg │ ├── devgupta2607.jpg │ ├── devill71.jpg │ ├── dhairya.jpg │ ├── dhruv-deshmukh-266273-unsplash.jpg │ ├── download.jpg │ ├── github.jpg │ ├── harshit.jpg │ ├── images(1).jpg │ ├── images.jpeg │ ├── ishan.jpg │ ├── jolly.jpg │ ├── kaushal.jpg │ ├── kesari007.jpg │ ├── keshav.jpg │ ├── lalit.jpg │ ├── lekhika.jpg │ ├── manish.jpg │ ├── mansi.jpg │ ├── maxresdefault.jpg │ ├── namandeept.jpg │ ├── neelabh.jpg │ ├── nikhil.jpg │ ├── nishant.jpg │ ├── nitin.jpg │ ├── open.jpeg │ ├── punisher.jpg │ ├── ravi.jpg │ ├── sagar.jpg │ ├── shantam.jpg │ ├── shivhek25.jpg │ ├── shreyansh.jpg │ ├── sourabh1031.jpeg │ ├── tushar.jpg │ ├── vikash.jpg │ ├── vj.jpg │ └── zerefwayne.jpg │ └── projects │ ├── android.jpg │ ├── backend.jpg │ ├── bar.jpg │ ├── ccoding.jpg │ ├── cs.jpg │ ├── css.jpg │ ├── cv.jpg │ ├── cynthesize.jpeg │ ├── fb.jpg │ ├── filecreator.jpg │ ├── frontend.jpg │ ├── heart.jpg │ ├── lap.jpg │ ├── ml.jpeg │ ├── music.jpg │ ├── music_player.jpg │ ├── nybles.jpg │ ├── opencode.jpg │ ├── opencodebot.jpg │ ├── react.jpg │ ├── research.jpg │ ├── stock.jpg │ └── tracking.jpg ├── css ├── animate.css └── main.css ├── data ├── games.json ├── mentors.json ├── participants.json └── projects.json ├── index.html ├── js ├── issue-fetch.js └── main.js └── vendor ├── bootstrap ├── css │ ├── bootstrap-grid.css │ ├── bootstrap-grid.min.css │ ├── bootstrap-reboot.css │ ├── bootstrap-reboot.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── bootstrap.min.css.map └── js │ ├── bootstrap.bundle.js │ ├── bootstrap.bundle.js.map │ ├── bootstrap.bundle.min.js │ ├── bootstrap.bundle.min.js.map │ ├── bootstrap.js │ ├── bootstrap.js.map │ ├── bootstrap.min.js │ └── bootstrap.min.js.map └── jquery ├── jquery.js ├── jquery.min.js ├── jquery.min.map ├── jquery.slim.js ├── jquery.slim.min.js └── jquery.slim.min.map /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | * Please fill out the template below 2 | 3 | ### Did you read the instructions in [README](../README.md) ? 4 | 5 | Yes/No 6 | 7 | ### Solves which issue ? 8 | 9 | Fixes #[issue number] 10 | 11 | ### Give discription. 12 | 13 | [Write Here. Be Specific] 14 | 15 | ## Checklist 16 | 17 | (To mark the checkboxes use `x` within the box brackets) 18 | 19 | - [] Signed the code of conduct. 20 | 21 | - [] Have you added yourself to the participants. 22 | 23 | - [] Joined opencode zulip server. 24 | 25 | -------------------------------------------------------------------------------- /.github/reviewers.yml: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - pradeepgangwar 3 | - Anupam-Dagar 4 | - aswinzz 5 | - aswanthkoleri 6 | - Ace-Bansal 7 | - shreyanshdwivedi 8 | - Tlazypanda 9 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | _site/ 3 | .DS_Store 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 OpenCode IIIT Allahabad 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 | # [Opencode Collaborative 2019](https://opencodeiiita.github.io/) 2 | 3 | ![Opencode](assets/img/opencode-banner.jpg) 4 | 5 | [![OpenCode](https://img.shields.io/badge/Open-Code-ff6a00.svg?style=flat-square)](https://opencode18.github.io) 6 | 7 | Chat with us on [Slack](https://opencodeiiita.slack.com) 8 | 9 | Join Zulip Chat [Zulip](https://opencode.zulipchat.com/) 10 | 11 | Like us on [Facebook](https://www.facebook.com/opencodeiiita/) 12 | 13 | ## About us 14 | 15 | [OpenCode](https://opencodeiiita.github.io/) is a month long open source program organised by [GeekHaven IIIT Allahabad](https://geekhaven.iiita.ac.in). OpenCode attracts talent from all over the world. People contribute to various open source projects. We welcome everyone to experience the awesome event and win exciting prizes. 16 | 17 | ## Requirements: 18 | 19 | - GitHub Account 20 | - Git 21 | 22 | #### Setting up git: 23 | 24 | - [Download and install the latest version of Git.](https://git-scm.com/downloads) 25 | - [Set your username in Git.](https://help.github.com/articles/setting-your-username-in-git) 26 | - [Set your commit email address in Git.](https://help.github.com/articles/setting-your-commit-email-address-in-git) 27 | 28 | ## Adding a mentor 29 | 30 | To add a mentor open `mentors.json` and please maintain the following format EXACTLY (replacing values where indicated): 31 | ``` 32 | { 33 | 34 | "name" : "Mentors Name", 35 | "imageurl" : "mentor/image.jpg", 36 | "about" : "Hello I'm a web developer", 37 | "facebook" : "url", 38 | "github" : "url", 39 | "twitter" : "url" 40 | } 41 | ``` 42 | 43 | IMPORTANT: 44 | 45 | - All images must be optimized before uploaded to the repo via commit or PR. 46 | - The images should be of square resolution. 47 | - If you do not want to include social media accounts, leave the field empty `"facebook":""`. 48 | 49 | ## Adding yourselves to participant section 50 | 51 | To add yourself to student section you need to open the file `participants.json` and please maintain the following format EXACTLY (replacing values where indicated): 52 | 53 | ``` 54 | { 55 | 56 | "name" : "Name", 57 | "imageurl" : "contestant/avatar.jpg", 58 | "about" : "Hello I'm a web developer", 59 | "college" : "My college", 60 | "facebook" : "url", 61 | "github" : "url", 62 | "twitter" : "url", 63 | "referral" : "who refered you?" 64 | } 65 | ``` 66 | IMPORTANT: 67 | 68 | - All images must be optimized before uploaded to the repo via commit or PR. 69 | - The images should be of square resolution. 70 | - If you do not want to include social media accounts, leave the field empty `"facebook":""`. 71 | 72 | - While working with JSON, check the file using [JSON Lint](https://jsonlint.com/) before opening pull request 73 | 74 | ## Contributing 75 | 76 | #### Getting started 77 | 78 | We will follow the official GitHub documentation for setting up the repo. 79 | 80 | - Forking and cloning the repository 81 | 82 | > [Link to GitHub Docs](https://help.github.com/articles/fork-a-repo/#step-2-create-a-local-clone-of-your-fork) 83 | 84 | By forking a repository you create your own copy of the project and make your changes there. Cloning a project means that you are setting up the project on your local system. 85 | 86 | - Syncing a fork 87 | 88 | > [Link to GitHub docs](https://help.github.com/articles/syncing-a-fork/) 89 | 90 | We keep our fork in sync to the original repository so that our copy of the project has the latest changes from the original project. 91 | 92 | - Making changes to project and committing a change 93 | 94 | > [Link to docs](https://dont-be-afraid-to-commit.readthedocs.io/en/latest/git/commandlinegit.html#commit-your-changes) 95 | 96 | Committing means making changes to the project and adding your changes to the GitHub. 97 | 98 | - Making a pull request 99 | 100 | > [Link to docs](https://help.github.com/articles/about-pull-requests/) 101 | 102 | - Pull request means submitting your changes to the original project for the review. Once the maintainers of the project feel that your changes are appropriate then your pull request will be merged. 103 | 104 | * Add relevant commit message in the pr, mention issue number and live link to comment while making pr. 105 | * **Note**: In case you feel any issue during setting up the project or using git, don't hesitate to ask us on our slack channel. We will help you out. 106 | 107 | ## Claiming up an issue 108 | 109 | - To claim an issue please comment on the issue as `@opencodebot claim` and the bot will assign you the issue. 110 | 111 | ## Guidelines and Best practices 112 | 113 | Please help us follow the best practice to make it easy for the reviewer as well as the contributor. We want to focus on the code quality more than on managing pull request ethics. 114 | 115 | - People before code: If any of the following rules are violated, the pull-requests must not be rejected. This is to create an easy and joyful onboarding process for new programmers and first-time contributors. 116 | 117 | - Single commit per pull request and name the commit as something meaningful, example: Adding <-your-name-> in students/mentors section. 118 | 119 | - Reference the issue numbers in the commit message if it resolves an open issue. Follow the pattern Fixes # 120 | 121 | - Provide the link to live gh-pages from your forked repository or relevant screenshot for easier review. 122 | 123 | - Pull Request older than 3 days with no response from the contributor shall be marked closed. 124 | 125 | - Do not make PR which is not related to any issues. You can create an issue and solve it once we approve them. 126 | 127 | - Avoid duplicate PRs, if need be comment on the older PR with the PR number of the follow-up (new PR) and close the obsolete PR yourself. 128 | 129 | - Be polite: Be polite to other community members. 130 | 131 | - Communicate: Whether you are working on a new feature or facing a doubt please feel free to ask us on our slack channel. We will be happy to help you out. 132 | 133 | ### Happy Coding :v: 134 | -------------------------------------------------------------------------------- /assets/icons/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/icons/moon.png -------------------------------------------------------------------------------- /assets/img/OClogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/OClogo.jpg -------------------------------------------------------------------------------- /assets/img/Puja.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/Puja.jpg -------------------------------------------------------------------------------- /assets/img/geekhavenlogo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Combined Shape 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/img/header-bg-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/header-bg-dark.jpg -------------------------------------------------------------------------------- /assets/img/header_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/header_bg.jpg -------------------------------------------------------------------------------- /assets/img/iiitalogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/iiitalogo.jpg -------------------------------------------------------------------------------- /assets/img/mentors/RE.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/mentors/RE.jpg -------------------------------------------------------------------------------- /assets/img/mentors/anan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/mentors/anan.jpg -------------------------------------------------------------------------------- /assets/img/mentors/anupam.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/mentors/anupam.JPG -------------------------------------------------------------------------------- /assets/img/mentors/debck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/mentors/debck.jpg -------------------------------------------------------------------------------- /assets/img/mentors/harsh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/mentors/harsh.jpg -------------------------------------------------------------------------------- /assets/img/mentors/jogendra.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/mentors/jogendra.JPG -------------------------------------------------------------------------------- /assets/img/mentors/joglekar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/mentors/joglekar.jpg -------------------------------------------------------------------------------- /assets/img/mentors/mentor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/mentors/mentor.jpg -------------------------------------------------------------------------------- /assets/img/mentors/niharika.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/mentors/niharika.jpeg -------------------------------------------------------------------------------- /assets/img/mentors/pradeep.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/mentors/pradeep.jpg -------------------------------------------------------------------------------- /assets/img/mentors/shivansh_tiwari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/mentors/shivansh_tiwari.jpg -------------------------------------------------------------------------------- /assets/img/mentors/shreyansh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/mentors/shreyansh.jpg -------------------------------------------------------------------------------- /assets/img/mentors/sneha.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/mentors/sneha.JPG -------------------------------------------------------------------------------- /assets/img/opencode-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/opencode-banner.jpg -------------------------------------------------------------------------------- /assets/img/opencode_logo_61n_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/opencode_logo_61n_icon.ico -------------------------------------------------------------------------------- /assets/img/participants/Abhaya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/Abhaya.jpg -------------------------------------------------------------------------------- /assets/img/participants/Abhinav2023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/Abhinav2023.jpg -------------------------------------------------------------------------------- /assets/img/participants/Abhishek.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/Abhishek.jpg -------------------------------------------------------------------------------- /assets/img/participants/Achint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/Achint.jpg -------------------------------------------------------------------------------- /assets/img/participants/AkshayKalola.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/AkshayKalola.jpg -------------------------------------------------------------------------------- /assets/img/participants/Anupam.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/Anupam.jpg -------------------------------------------------------------------------------- /assets/img/participants/Astha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/Astha.jpg -------------------------------------------------------------------------------- /assets/img/participants/B3ingALearner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/B3ingALearner.jpg -------------------------------------------------------------------------------- /assets/img/participants/DSC_0113_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/DSC_0113_02.jpg -------------------------------------------------------------------------------- /assets/img/participants/Euclid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/Euclid.jpg -------------------------------------------------------------------------------- /assets/img/participants/Hardik.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/Hardik.jpg -------------------------------------------------------------------------------- /assets/img/participants/IMG_20180728_162500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/IMG_20180728_162500.jpg -------------------------------------------------------------------------------- /assets/img/participants/Neeraj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/Neeraj.jpg -------------------------------------------------------------------------------- /assets/img/participants/Rajat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/Rajat.jpg -------------------------------------------------------------------------------- /assets/img/participants/Saakshi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/Saakshi.jpg -------------------------------------------------------------------------------- /assets/img/participants/Vishnuk7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/Vishnuk7.jpg -------------------------------------------------------------------------------- /assets/img/participants/Wwar_lock.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/Wwar_lock.jpeg -------------------------------------------------------------------------------- /assets/img/participants/adil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/adil.jpg -------------------------------------------------------------------------------- /assets/img/participants/aman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/aman.jpg -------------------------------------------------------------------------------- /assets/img/participants/amit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/amit.jpg -------------------------------------------------------------------------------- /assets/img/participants/anmol.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/anmol.jpg -------------------------------------------------------------------------------- /assets/img/participants/ashish4321.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/ashish4321.jpg -------------------------------------------------------------------------------- /assets/img/participants/bindu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/bindu.jpg -------------------------------------------------------------------------------- /assets/img/participants/blurry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/blurry.jpg -------------------------------------------------------------------------------- /assets/img/participants/code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/code.jpg -------------------------------------------------------------------------------- /assets/img/participants/devgupta2607.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/devgupta2607.jpg -------------------------------------------------------------------------------- /assets/img/participants/devill71.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/devill71.jpg -------------------------------------------------------------------------------- /assets/img/participants/dhairya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/dhairya.jpg -------------------------------------------------------------------------------- /assets/img/participants/dhruv-deshmukh-266273-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/dhruv-deshmukh-266273-unsplash.jpg -------------------------------------------------------------------------------- /assets/img/participants/download.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/download.jpg -------------------------------------------------------------------------------- /assets/img/participants/github.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/github.jpg -------------------------------------------------------------------------------- /assets/img/participants/harshit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/harshit.jpg -------------------------------------------------------------------------------- /assets/img/participants/images(1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/images(1).jpg -------------------------------------------------------------------------------- /assets/img/participants/images.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/images.jpeg -------------------------------------------------------------------------------- /assets/img/participants/ishan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/ishan.jpg -------------------------------------------------------------------------------- /assets/img/participants/jolly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/jolly.jpg -------------------------------------------------------------------------------- /assets/img/participants/kaushal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/kaushal.jpg -------------------------------------------------------------------------------- /assets/img/participants/kesari007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/kesari007.jpg -------------------------------------------------------------------------------- /assets/img/participants/keshav.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/keshav.jpg -------------------------------------------------------------------------------- /assets/img/participants/lalit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/lalit.jpg -------------------------------------------------------------------------------- /assets/img/participants/lekhika.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/lekhika.jpg -------------------------------------------------------------------------------- /assets/img/participants/manish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/manish.jpg -------------------------------------------------------------------------------- /assets/img/participants/mansi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/mansi.jpg -------------------------------------------------------------------------------- /assets/img/participants/maxresdefault.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/maxresdefault.jpg -------------------------------------------------------------------------------- /assets/img/participants/namandeept.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/namandeept.jpg -------------------------------------------------------------------------------- /assets/img/participants/neelabh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/neelabh.jpg -------------------------------------------------------------------------------- /assets/img/participants/nikhil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/nikhil.jpg -------------------------------------------------------------------------------- /assets/img/participants/nishant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/nishant.jpg -------------------------------------------------------------------------------- /assets/img/participants/nitin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/nitin.jpg -------------------------------------------------------------------------------- /assets/img/participants/open.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/open.jpeg -------------------------------------------------------------------------------- /assets/img/participants/punisher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/punisher.jpg -------------------------------------------------------------------------------- /assets/img/participants/ravi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/ravi.jpg -------------------------------------------------------------------------------- /assets/img/participants/sagar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/sagar.jpg -------------------------------------------------------------------------------- /assets/img/participants/shantam.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/shantam.jpg -------------------------------------------------------------------------------- /assets/img/participants/shivhek25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/shivhek25.jpg -------------------------------------------------------------------------------- /assets/img/participants/shreyansh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/shreyansh.jpg -------------------------------------------------------------------------------- /assets/img/participants/sourabh1031.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/sourabh1031.jpeg -------------------------------------------------------------------------------- /assets/img/participants/tushar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/tushar.jpg -------------------------------------------------------------------------------- /assets/img/participants/vikash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/vikash.jpg -------------------------------------------------------------------------------- /assets/img/participants/vj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/vj.jpg -------------------------------------------------------------------------------- /assets/img/participants/zerefwayne.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/participants/zerefwayne.jpg -------------------------------------------------------------------------------- /assets/img/projects/android.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/projects/android.jpg -------------------------------------------------------------------------------- /assets/img/projects/backend.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/projects/backend.jpg -------------------------------------------------------------------------------- /assets/img/projects/bar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/projects/bar.jpg -------------------------------------------------------------------------------- /assets/img/projects/ccoding.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/projects/ccoding.jpg -------------------------------------------------------------------------------- /assets/img/projects/cs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/projects/cs.jpg -------------------------------------------------------------------------------- /assets/img/projects/css.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/projects/css.jpg -------------------------------------------------------------------------------- /assets/img/projects/cv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/projects/cv.jpg -------------------------------------------------------------------------------- /assets/img/projects/cynthesize.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/projects/cynthesize.jpeg -------------------------------------------------------------------------------- /assets/img/projects/fb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/projects/fb.jpg -------------------------------------------------------------------------------- /assets/img/projects/filecreator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/projects/filecreator.jpg -------------------------------------------------------------------------------- /assets/img/projects/frontend.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/projects/frontend.jpg -------------------------------------------------------------------------------- /assets/img/projects/heart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/projects/heart.jpg -------------------------------------------------------------------------------- /assets/img/projects/lap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/projects/lap.jpg -------------------------------------------------------------------------------- /assets/img/projects/ml.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/projects/ml.jpeg -------------------------------------------------------------------------------- /assets/img/projects/music.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/projects/music.jpg -------------------------------------------------------------------------------- /assets/img/projects/music_player.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/projects/music_player.jpg -------------------------------------------------------------------------------- /assets/img/projects/nybles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/projects/nybles.jpg -------------------------------------------------------------------------------- /assets/img/projects/opencode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/projects/opencode.jpg -------------------------------------------------------------------------------- /assets/img/projects/opencodebot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/projects/opencodebot.jpg -------------------------------------------------------------------------------- /assets/img/projects/react.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/projects/react.jpg -------------------------------------------------------------------------------- /assets/img/projects/research.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/projects/research.jpg -------------------------------------------------------------------------------- /assets/img/projects/stock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/projects/stock.jpg -------------------------------------------------------------------------------- /assets/img/projects/tracking.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencodeiiita/Opencode-Collaborative-19/ab4f0e6deb6fbf800970a5484243d975b78378f4/assets/img/projects/tracking.jpg -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Start Bootstrap - 4 Col Portfolio (https://startbootstrap.com/template-overviews/4-col-portfolio) 3 | * Copyright 2013-2018 Start Bootstrap 4 | * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap-4-col-portfolio/blob/master/LICENSE) 5 | */ 6 | 7 | 8 | html,body 9 | { 10 | width: 100%; 11 | height: 100%; 12 | margin: 0px; 13 | padding: 0px; 14 | overflow-x: hidden; 15 | } 16 | 17 | 18 | 19 | 20 | .overlapissue{ 21 | z-index: 1 !important; 22 | 23 | } 24 | 25 | 26 | 27 | .header { 28 | position: fixed; 29 | top: 79px; 30 | width: 100%; 31 | background-color: #f1f1f1; 32 | } 33 | 34 | 35 | .progress-container { 36 | width: 100%; 37 | height: 5px; 38 | background: #F7F8F9; 39 | } 40 | 41 | .progress-bar { 42 | height: 5px; 43 | background:rgb(255, 102, 0); 44 | width: 0%; 45 | } 46 | 47 | 48 | #mainNav { 49 | padding: 1em 0; 50 | 51 | } 52 | 53 | .header-overlay { 54 | height: 100vh; 55 | background: url("../assets/img/header_bg.jpg"); 56 | background-position: center center; 57 | background-repeat: no-repeat; 58 | background-size: cover; 59 | padding: 200px 0; 60 | color: #fafafa; 61 | } 62 | 63 | .header-btn { 64 | margin-top: 15px; 65 | border: none; 66 | border-radius: 40px; 67 | padding: 10px 20px; 68 | color: #fff; 69 | box-shadow: 0 1px 3px rgb(24, 23, 23,); 70 | background: -webkit-linear-gradient(left, rgb(255, 140, 89) 0%, rgb(255, 177, 82) 100%); 71 | } 72 | 73 | .header-btn a { 74 | color: #fff; 75 | } 76 | 77 | .header-btn:hover { 78 | cursor: pointer; 79 | background: -webkit-linear-gradient(left, rgb(247, 112, 55) 0%, rgb(250, 168, 68) 100%); 80 | } 81 | 82 | 83 | .nav-link:hover { 84 | color: #3366BB !important; 85 | font-weight: bold; 86 | 87 | } 88 | 89 | 90 | .countdownContainer{ 91 | position: relative; 92 | padding: 10px; 93 | max-width: 50%; 94 | max-height: 100%; 95 | margin: 20px auto; 96 | box-sizing: border-box; 97 | font-weight: 350; 98 | background-color: transparent !important; 99 | font-size: 3vw; 100 | 101 | } 102 | 103 | .info { 104 | position: inherit; 105 | padding: 10px; 106 | display: grid; 107 | grid-template-columns: 20% 5% 20% 5% 20% 5% 25%; 108 | align-items: center; 109 | } 110 | 111 | .labels { 112 | position: inherit; 113 | display: grid; 114 | grid-template-columns: 25% 25% 25% 25%; 115 | text-align: center; 116 | } 117 | 118 | .nightcountdown { 119 | background-color: transparent !important; 120 | color: #fff !important; 121 | } 122 | 123 | .portfolio-item { 124 | margin-bottom: 30px; 125 | } 126 | 127 | .pagination { 128 | margin-bottom: 30px; 129 | } 130 | 131 | .profile-image{ 132 | border-radius: 10px; 133 | } 134 | 135 | .footer_media{ 136 | color:black; 137 | font-size: 20px; 138 | padding-left: 10px; 139 | text-align: center; 140 | } 141 | 142 | .participant-card { 143 | max-height: 325px; 144 | min-height: 325px; 145 | width: 100% !important; 146 | min-width: 180px; 147 | box-shadow: 0 3px 6px 0 rgba(0,0,0,0.12); 148 | transform-style: preserve-3d; 149 | transition: all 0.5s ease-in-out; 150 | text-align: center; 151 | 152 | } 153 | .mentor-card { 154 | max-height: 375px; 155 | min-height: 375px; 156 | min-width: 275px; 157 | box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.12); 158 | 159 | } 160 | .participant-card:hover { 161 | transform: rotateY(180deg); 162 | } 163 | 164 | .participant-card .side { 165 | backface-visibility: hidden; 166 | overflow: hidden; 167 | position: absolute; 168 | text-align: center; 169 | } 170 | .card-about{ 171 | text-align: center; 172 | padding: 30px 10px; 173 | margin:100px 20px; 174 | font-size: 15px; 175 | } 176 | .participant-card .back { 177 | 178 | text-align: center; 179 | justify-content: center; 180 | transform: rotateY(180deg); 181 | background-size: cover; 182 | width: 100%; 183 | height: 100%; 184 | } 185 | 186 | .participant-img { 187 | max-height: 200px; 188 | min-height: 200px; 189 | min-width: 100%; 190 | 191 | width: 100%; 192 | height: auto; 193 | } 194 | 195 | .social-media-links { 196 | background: #fafafa; 197 | padding: 15px 0; 198 | } 199 | 200 | .social-media-links a i { 201 | color: #9E9E9E; 202 | padding: 0 10px; 203 | font-size: 16px; 204 | transition: .2s ease-in-out; 205 | -webkit-transition: .2s ease-in-out; 206 | } 207 | 208 | .social-media-links a i:hover { 209 | color: #212121; 210 | transform: scale(1.4); 211 | } 212 | 213 | ::-webkit-scrollbar { 214 | width: 20px; 215 | } 216 | 217 | ::-webkit-scrollbar-track { 218 | background: #f1f1f1; 219 | } 220 | 221 | ::-webkit-scrollbar-thumb { 222 | background: #888; 223 | border-radius: 15px ; 224 | } 225 | 226 | ::-webkit-scrollbar-thumb:hover { 227 | background: #555; 228 | } 229 | 230 | @media screen and (max-width: 767px) { 231 | .participant-card { 232 | max-height: 515px; 233 | min-height: 515px; 234 | } 235 | } 236 | 237 | @media screen and (max-width: 600px) { 238 | .participant-card .card { 239 | height: 200px !important; 240 | } 241 | } 242 | #myBtn { 243 | display: none; 244 | position: fixed; 245 | bottom: 20px; 246 | right: 20px; 247 | z-index: 100; 248 | font-size: 20px; 249 | border: none; 250 | outline: none; 251 | background-color: white; 252 | color: red; 253 | cursor: pointer; 254 | padding: 8px; 255 | border-radius: 2px; 256 | } 257 | 258 | #myBtn:hover { 259 | background-color: #555; 260 | } 261 | 262 | .spinner { 263 | width: 40px; 264 | height: 40px; 265 | background-color: #333; 266 | position: absolute; 267 | top: 48%; 268 | left: 48%; 269 | -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out; 270 | animation: sk-rotateplane 1.2s infinite ease-in-out; 271 | } 272 | 273 | @-webkit-keyframes sk-rotateplane { 274 | 0% { -webkit-transform: perspective(120px) } 275 | 50% { -webkit-transform: perspective(120px) rotateY(180deg) } 276 | 100% { -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg) } 277 | } 278 | 279 | @keyframes sk-rotateplane { 280 | 0% { 281 | transform: perspective(120px) rotateX(0deg) rotateY(0deg); 282 | -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg) 283 | } 50% { 284 | transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); 285 | -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) 286 | } 100% { 287 | transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); 288 | -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); 289 | } 290 | } 291 | 292 | /* spinner */ 293 | .spinner-wrapper { 294 | position: fixed; 295 | top: 0; 296 | left: 0; 297 | right: 0; 298 | bottom: 0; 299 | background-color: #ff6347; 300 | z-index: 3; 301 | } 302 | 303 | .loading { 304 | overflow: hidden; 305 | height: 100vh; 306 | } 307 | 308 | /* smooth scrolling */ 309 | html{ 310 | scroll-behavior: smooth; 311 | } 312 | 313 | /* dark mode */ 314 | .dark { 315 | background-color: #262626 !important; 316 | color: #fff !important; 317 | -webkit-transition: .1s; 318 | transition: .1s; 319 | } 320 | 321 | .dark-landing-text { 322 | background-color: transparent !important; 323 | color: #fff !important; 324 | } 325 | 326 | .dark-bg-img { 327 | background-image: url("../assets/img/header-bg-dark.jpg"); 328 | } 329 | 330 | .night-footer { 331 | border-top: 1px solid #fff; 332 | background-color: #000 !important; 333 | } 334 | 335 | .footer-dark { 336 | background-color: #000 !important; 337 | } 338 | 339 | .dark-mode { 340 | display: flex; 341 | align-items: center; 342 | justify-content: center; 343 | padding: 0px 16px 0px 8px; 344 | } 345 | 346 | /* dark mode toggle switch */ 347 | .switch { 348 | position: relative; 349 | display: inline-block; 350 | width: 35px; 351 | height: 21px; 352 | margin-bottom: 0px; 353 | margin-top: 3px; 354 | } 355 | 356 | .switch input { 357 | opacity: 0; 358 | width: 0; 359 | height: 0; 360 | } 361 | 362 | .slider { 363 | position: absolute; 364 | cursor: pointer; 365 | top: 0; 366 | left: 0; 367 | right: 0; 368 | bottom: 0; 369 | background-color: #fff; 370 | -webkit-transition: .4s; 371 | transition: .4s; 372 | } 373 | 374 | /* dark mode slider */ 375 | .slider:before { 376 | position: absolute; 377 | content: ""; 378 | height: 16px; 379 | width: 16px; 380 | left: 2px; 381 | right: 2px; 382 | top: 1px; 383 | background-image: url("../assets/icons/moon.png"); 384 | -webkit-transition: .4s; 385 | transition: .4s; 386 | } 387 | 388 | input:checked + .slider { 389 | background-color: #8A8B8B; 390 | } 391 | 392 | input:focus + .slider { 393 | box-shadow: 0 0 1px rgb(255, 255, 255); 394 | } 395 | 396 | input:checked + .slider:before { 397 | -webkit-transform: translateX(14px); 398 | -ms-transform: translateX(14px); 399 | transform: translateX(14px); 400 | } 401 | 402 | /* Round slide */ 403 | .slider.round { 404 | border-radius: 34px; 405 | border: 2px solid #8A8B8B; 406 | } 407 | 408 | .slider.round:before { 409 | border-radius: 50%; 410 | } 411 | 412 | /*Pagination*/ 413 | .pagination .disabled a{ 414 | background: #e0e0e0 !important; 415 | } 416 | 417 | .pagination .active:hover{ 418 | color: #fff; 419 | z-index:-1; 420 | } 421 | 422 | 423 | /*fork and star*/ 424 | .github{ 425 | color: #5a5a5a; 426 | font-size: 22px; 427 | } 428 | 429 | /*project cards*/ 430 | .card-img-project{ 431 | height: 15vw; 432 | } 433 | 434 | .card-footer-project{ 435 | background: #fafafa; 436 | border-top: initial; 437 | } 438 | 439 | .card-footer-project p{ 440 | font-weight: 600; 441 | } 442 | 443 | 444 | .participant-img{ 445 | max-height: 200px; 446 | min-height: 200px; 447 | } 448 | 449 | @media only screen and (max-width: 600px) { 450 | .participant-img { 451 | width: 100% !important; 452 | height: 100% !important; 453 | } 454 | 455 | } 456 | 457 | .card-img-project{ 458 | height: 250px; 459 | width: 360px; 460 | } 461 | 462 | } 463 | 464 | @media only screen and (max-width: 480px) { 465 | .participant-img { 466 | width: 100% !important; 467 | height: 100% !important; 468 | } 469 | .card-img-project{ 470 | height: 250px; 471 | width: 342px; 472 | } 473 | 474 | } 475 | 476 | @media only screen and (max-width: 375px) { 477 | .participant-img { 478 | width: 100% !important; 479 | height: 100% !important; 480 | } 481 | .card-img-project{ 482 | height: 250px; 483 | width: 325px; 484 | } 485 | 486 | } 487 | 488 | 489 | @media only screen and (max-width: 320px) { 490 | .participant-img { 491 | width: 100% !important; 492 | height: 100% !important; 493 | } 494 | .card-img-project{ 495 | height: 250px; 496 | width: 285px; 497 | } 498 | 499 | } 500 | 501 | 502 | @media only screen and (min-width: 600px) { 503 | .participant-img { 504 | width: 100% !important; 505 | height: 100% !important; 506 | } 507 | } 508 | 509 | .card-college{ 510 | font-size:14px; 511 | font-weight: 600; 512 | } 513 | 514 | .card-name{ 515 | font-size: 16px; 516 | } 517 | 518 | .card-college{ 519 | font-size:18px; 520 | } 521 | 522 | .card-name{ 523 | font-size:20px; 524 | } 525 | 526 | 527 | @media screen and (max-width: 991px) { 528 | .navbar-brand{ 529 | padding: .5rem 1rem; 530 | } 531 | .nav-item{ 532 | padding: .5rem 1rem; 533 | } 534 | .nav-link{ 535 | padding: 0 !important; 536 | } 537 | 538 | .dark-mode{ 539 | display: flex; 540 | justify-content: start; 541 | } 542 | 543 | .navbar-toggler{ 544 | margin: .5rem 1rem; 545 | } 546 | 547 | .navbar-nav{ 548 | display: initial; 549 | } 550 | 551 | .fork { 552 | display: inline-block!important; 553 | padding-right: 0; 554 | margin-right: initial !important; 555 | } 556 | 557 | .fork div{ 558 | display: inline !important; 559 | } 560 | 561 | .star{ 562 | display: inline !important; 563 | } 564 | 565 | .star div{ 566 | display: inline !important; 567 | } 568 | } 569 | 570 | .icon-color{ 571 | color:white; 572 | } 573 | 574 | /* typing animation */ 575 | .typing-anim { 576 | overflow: hidden !important; white-space: nowrap !important; 577 | border-right: 4px solid #fff; 578 | width: 13ch; 579 | margin: auto; 580 | animation: type 3s steps(13), 581 | blink-caret 1s step-end infinite !important; 582 | 583 | 584 | -webkit-animation: type 3s steps(13), 585 | blink-caret 1s step-end infinite !important; 586 | 587 | -moz-animation: type 3s steps(13), 588 | blink-caret 1s step-end infinite !important; 589 | } 590 | 591 | @keyframes type { 592 | 0% { 593 | width: 0ch; 594 | } 595 | 596 | 100% { 597 | width: 13ch; 598 | } 599 | } 600 | 601 | /* blinking cursor */ 602 | @-webkit-keyframes blink-caret { 603 | from, to { border-color: transparent } 604 | 50% { border-color: #fff } 605 | } 606 | 607 | @-moz-keyframes blink-caret { 608 | from, to { border-color: transparent } 609 | 50% { border-color: #fff } 610 | } 611 | 612 | /* fixed navbar */ 613 | .navbar-fixed { 614 | overflow: hidden; 615 | position: fixed; 616 | top: 0; 617 | width: 100%; 618 | z-index: 1; 619 | 620 | } 621 | 622 | /* list all issues */ 623 | 624 | /* on click overlay starts */ 625 | .overlay { 626 | height: 100%; 627 | width: 0; 628 | position: fixed; /* Stay in place */ 629 | z-index: 1; /* Sit on top */ 630 | left: 0; 631 | top: 0; 632 | background-color: #fff; 633 | overflow-x: hidden; /* Disable horizontal scroll */ 634 | transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */ 635 | } 636 | 637 | /* Position the content inside the overlay */ 638 | .overlay-content { 639 | position: relative; 640 | top: 25%; /* 25% from the top */ 641 | width: 100%; /* 100% width */ 642 | text-align: center; /* Centered text/links */ 643 | margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */ 644 | } 645 | 646 | /* The navigation links inside the overlay */ 647 | .overlay a { 648 | padding: 8px; 649 | text-decoration: none; 650 | font-size: 36px; 651 | color: #818181; 652 | display: inline; /* Display block instead of inline */ 653 | transition: 0.3s; /* Transition effects on hover (color) */ 654 | } 655 | 656 | /* Position the close button (top right corner) */ 657 | .overlay .closebtn { 658 | position: absolute; 659 | top: 20px; 660 | right: 45px; 661 | font-size: 60px; 662 | } 663 | 664 | /* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */ 665 | @media screen and (max-height: 450px) { 666 | .overlay a {font-size: 20px} 667 | .overlay .closebtn { 668 | font-size: 40px; 669 | top: 15px; 670 | right: 35px; 671 | } 672 | } 673 | /* on click overlay ends */ 674 | 675 | 676 | /* repository buttons */ 677 | .row-c { 678 | margin: 0px !important; 679 | padding: 0px !important; 680 | } 681 | 682 | /* .col { 683 | margin: 0px !important; 684 | padding: 0px !important; 685 | } */ 686 | 687 | .center-c { 688 | display: flex; 689 | align-items: center; 690 | justify-content: center; 691 | } 692 | 693 | .issue-title { 694 | background-color: inherit; 695 | color: #000; 696 | padding: 0px 0px 20px 15px; 697 | } 698 | 699 | .issue-btn-section { 700 | background-color: #fff; 701 | } 702 | 703 | .issue-btn-section .btn { 704 | margin: 0.5rem 0rem 0.5rem 0rem; 705 | height: 2rem; 706 | width: 100%; 707 | padding: 0px 3px 0px 3px; 708 | } 709 | 710 | 711 | /* overlay content styling */ 712 | .card-col { 713 | display: flex; 714 | align-items: center; 715 | justify-content: center; 716 | padding-bottom: 2.5rem; 717 | } 718 | 719 | .card-c { 720 | border-radius: 1rem !important; 721 | } 722 | 723 | .card-title-c { 724 | font-size: 2rem !important; 725 | } 726 | 727 | .card-subtitle-c { 728 | font-size: 1.5rem !important; 729 | } 730 | 731 | .card-text-c { 732 | font-size: 1.3rem !important; 733 | } 734 | 735 | .btn-c { 736 | padding: 0rem .3rem 0rem .3rem; 737 | } 738 | 739 | .card-link-c { 740 | align-items: left; 741 | } 742 | 743 | .project-card { 744 | max-height: 375px; 745 | min-height: 375px; 746 | width: 100% !important; 747 | min-width: 100%; 748 | box-shadow: 0 3px 6px 0 rgba(0,0,0,0.12); 749 | transform-style: preserve-3d; 750 | transition: all 0.5s ease-in-out; 751 | text-align: center; 752 | 753 | } 754 | .project-card:hover { 755 | transform: rotateY(180deg); 756 | } 757 | .project-card .side { 758 | backface-visibility: hidden; 759 | overflow: hidden; 760 | position: absolute; 761 | text-align: center; 762 | } 763 | .project-text{ 764 | text-align: center; 765 | padding: 30px 10px; 766 | margin:100px 20px; 767 | font-size: 15px; 768 | } 769 | .project-card .back { 770 | 771 | text-align: center; 772 | justify-content: center; 773 | transform: rotateY(180deg); 774 | background-size: cover; 775 | width: 100%; 776 | height: 100%; 777 | } 778 | .card-img-project { 779 | max-height: 240px; 780 | min-height: 240px; 781 | min-width: 100%; 782 | width: 100%; 783 | height: auto; 784 | } 785 | .back{ 786 | display: flex; 787 | flex-direction: column; 788 | } 789 | .card-footer-project{ 790 | margin-top: -60px; 791 | flex: 1; 792 | } 793 | .project-text{ 794 | margin-top: 25px; 795 | flex: 1; 796 | } 797 | 798 | 799 | /* hover effect to footer icons */ 800 | .footer-hover:hover { 801 | transform: scale(1.2); 802 | transition-duration: 0.5s; 803 | } 804 | 805 | .fab:hover { 806 | transform: scale(1.2); 807 | transition-duration: 0.4s; 808 | } 809 | 810 | .game-card { 811 | /* max-height: 470px; 812 | min-height: 470px; */ 813 | height: 100%; 814 | min-width: 100%; 815 | box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.12); 816 | 817 | } 818 | 819 | /* personal website icon */ 820 | .fas:hover { 821 | transform: scale(1.2); 822 | transition-duration: 0.4s; 823 | } 824 | 825 | 826 | 827 | 828 | /* sticky github */ 829 | .sticky-container{ 830 | padding: 0px; 831 | margin: 0px; 832 | position: fixed; 833 | right: -100px; 834 | top: 200px; 835 | width: 192px; 836 | } 837 | 838 | .sticky li{ 839 | text-align: left; 840 | list-style-type: none; 841 | background-color: #343A40; 842 | color: #efefef; 843 | height: 40px; 844 | border-top-left-radius: 10px; 845 | border-bottom-left-radius: 10px; 846 | -webkit-transition: all 0.40s ease-in-out; 847 | -moz-transition: all 0.40s ease-in-out; 848 | -o-transition: all 0.40s ease-in-out; 849 | transition: all 0.40s ease-in-out; 850 | cursor: pointer; 851 | } 852 | 853 | .sticky li:hover{ 854 | margin-left: -30px; 855 | } 856 | 857 | .sticky li a{ 858 | text-decoration: none; 859 | color: white; 860 | font-size: 20px; 861 | } 862 | 863 | .fab-c { 864 | margin: 10px !important; 865 | } 866 | 867 | /* .fab-c:hover { 868 | transition: none; 869 | transform: none; 870 | } */ 871 | 872 | .sticky-github { 873 | display: none; 874 | } 875 | 876 | @media screen and (max-width: 991px) { 877 | .github-fork-ribbon { 878 | display: none !important; 879 | } 880 | 881 | .sticky-github { 882 | display: inline; 883 | } 884 | } 885 | 886 | .border-heading { 887 | display: block; 888 | border-bottom: 2px solid gray; 889 | } 890 | -------------------------------------------------------------------------------- /data/games.json: -------------------------------------------------------------------------------- 1 | { 2 | "games": [ 3 | { 4 | "developer": "Dhairya Baweja", 5 | "imageurl": "assets/img/participants/dhairya.jpg", 6 | "gamename": "Basic Javascript Game", 7 | "github_link": "https://github.com/dhairyabaweja" 8 | }, 9 | { 10 | "developer": "Rupesh Krishna Jha", 11 | "imageurl": "https://image.flaticon.com/icons/svg/1141/1141771.svg", 12 | "gamename": "Tic Tac Toe CLI", 13 | "github_link": "https://github.com/Rupeshiya" 14 | }, 15 | { 16 | "developer": "Manthan Surkar", 17 | "imageurl": "https://en.gravatar.com/userimage/59390444/d267abe902e7f507e425febe985b3229.png?size=400", 18 | "gamename": "The Lucky Dice Game", 19 | "github_link": "https://github.com/thesmallstar" 20 | }, 21 | { 22 | "developer": "Lalit Sharma", 23 | "imageurl": "https://image.flaticon.com/icons/svg/1141/1141771.svg", 24 | "gamename": "Color Game", 25 | "github_link": "https://github.com/Rattlecode17sh" 26 | }, 27 | { 28 | "developer": "Archies11", 29 | "imageurl": "https://image.flaticon.com/icons/svg/1141/1141771.svg", 30 | "gamename": "Snake", 31 | "github_link": "https://github.com/Archies11" 32 | }, 33 | { 34 | "developer": "Vishnu K Raman", 35 | "imageurl": "assets/img/participants/Vishnuk7.jpg", 36 | "gamename": "RPS", 37 | "github_link": "https://github.com/vishnuk7" 38 | }, 39 | { 40 | "developer": "Anupam Shukla", 41 | "imageurl": "assets/img/participants/Anupam.jpg", 42 | "gamename": "Snake Game JS", 43 | "github_link": "https://github.com/anupm12" 44 | }, 45 | { 46 | "developer": "Vishvajeet Vasantrao Dhawale", 47 | "imageurl": "https://image.flaticon.com/icons/svg/1141/1141771.svg", 48 | "gamename": "Car Race", 49 | "github_link": "https://github.com/mivishvajeet" 50 | }, 51 | { 52 | "developer": "Shivam Singhal", 53 | "imageurl": "assets/img/participants/shivhek25.jpg", 54 | "gamename": "Tic Tac Toe", 55 | "github_link": "https://github.com/shivhek25" 56 | }, 57 | { 58 | "developer": "Ashish Agarowala", 59 | "imageurl": "assets/img/participants/ashish4321.jpg", 60 | "gamename": "Hit the Dots", 61 | "github_link": "https://github.com/ashish4321" 62 | }, 63 | { 64 | "developer": "Suneet Kumar Makkar", 65 | "imageurl": "https://image.flaticon.com/icons/svg/1141/1141771.svg", 66 | "gamename": "Color Game", 67 | "github_link": "https://github.com/SuneetKumar19" 68 | } 69 | ] 70 | } 71 | -------------------------------------------------------------------------------- /data/mentors.json: -------------------------------------------------------------------------------- 1 | { 2 | "mentors" : [ 3 | { 4 | "name" : "Pradeep Gangwar", 5 | "imageurl" : "assets/img/mentors/pradeep.jpg", 6 | "about" : "Developing for community", 7 | "facebook" : "https://www.facebook.com/pradeep.gangwar.391", 8 | "github" : "https://github.com/pradeepgangwar", 9 | "twitter" : "https://twitter.com/pradeep_3_9" 10 | }, 11 | { 12 | "name" : "Anupam Dagar", 13 | "imageurl" : "assets/img/mentors/anupam.JPG", 14 | "about" : "Mentor for OpenCode organisation.", 15 | "facebook" : "https://www.facebook.com/invincible.anupam", 16 | "github" : "https://github.com/Anupam-dagar", 17 | "twitter" : "https://twitter.com/siriusdagar" 18 | }, 19 | { 20 | "name" : "Shreyansh Dwivedi", 21 | "imageurl" : "assets/img/mentors/shreyansh.jpg", 22 | "about" : "OpenSource Enthusiast | IIITA", 23 | "facebook" : "https://www.facebook.com/shreyansh.dwivedi.18", 24 | "github" : "https://github.com/shreyanshdwivedi", 25 | "twitter" : "https://twitter.com/shreyanshdwiv97" 26 | }, 27 | { 28 | "name" : "Ananya Agrawal", 29 | "imageurl" : "assets/img/mentors/anan.jpg", 30 | "about" : "Mentor for Opencode", 31 | "facebook" : "https://www.facebook.com/ananya.agrawal1251999", 32 | "github" : "https://github.com/ananya-agrawal", 33 | "twitter" : "https://twitter.com/AgrawalAnanyaa" 34 | }, 35 | { 36 | "name" : "Aayush Joglekar", 37 | "imageurl" : "assets/img/mentors/joglekar.jpg", 38 | "about" : "React and SASS Developer | IIITA", 39 | "facebook" : "https://www.facebook.com/joglekaraayush", 40 | "github" : "https://github.com/zerefwayne", 41 | "twitter" : "https://twitter.com/zerefwayne" 42 | }, 43 | { 44 | "name" : "Shivansh Tiwari", 45 | "imageurl" : "assets/img/mentors/shivansh_tiwari.jpg", 46 | "about" : "Android Developer | Machine Learning Enthusiast", 47 | "facebook" : "https://www.facebook.com/shivansh.tiwari.3954", 48 | "github" : "https://github.com/shiv07tiwari", 49 | "twitter" : "https://twitter.com/shivansh1610" 50 | }, 51 | { 52 | "name" : "Prateek", 53 | "imageurl" : "assets/img/mentors/prateek76.jpg", 54 | "about" : "Mentor for OpenCode19 | IIITA", 55 | "facebook" : "https://www.facebook.com/prateek.17.xx.1999", 56 | "github" : "https://github.com/prateek76", 57 | "twitter" : "https://twitter.com/Prateek97923412" 58 | }, 59 | { 60 | "name" : "Harsh Gupta", 61 | "imageurl" : "assets/img/mentors/harsh.jpg", 62 | "about" : "Mentor for OpenCode19 | IIITA", 63 | "facebook" : "https://www.facebook.com/out0fScop3", 64 | "github" : "https://github.com/DreamyPhobic", 65 | "twitter" : "" 66 | }, 67 | { 68 | "name" : "Niharika Shrivastava", 69 | "imageurl" : "assets/img/mentors/niharika.jpeg", 70 | "about" : "Backend Developer, ML enthusiast | IIITA", 71 | "facebook" : "https://www.facebook.com/NiharikaS25", 72 | "github" : "https://github.com/OrionStar25", 73 | "twitter" : "https://twitter.com/StarOrion25" 74 | }, 75 | { 76 | "name" : "Debasish Sahoo", 77 | "imageurl" : "assets/img/mentors/debck.jpg", 78 | "about" : "Web Developer | Open Source Lover ", 79 | "facebook" : "", 80 | "github" : "https://github.com/debck", 81 | "twitter" : "https://twitter.com/imhere_ck" 82 | }, 83 | { 84 | "name" : "Sneha Mishra", 85 | "imageurl" : "assets/img/mentors/sneha.jpg", 86 | "about" : "Open Source Enthusiast | IIITA ", 87 | "facebook" : "https://www.facebook.com/snehamishrabb", 88 | "github" : "https://github.com/Tlazypanda", 89 | "twitter" : "" 90 | }, 91 | { 92 | "name" : "Yash Rathore", 93 | "imageurl" : "assets/img/mentors/RE.jpg", 94 | "about" : "Here for the commits", 95 | "facebook" : "https://www.facebook.com/yash.re.10", 96 | "github" : "https://github.com/YashRE42", 97 | "twitter" : "" 98 | }, 99 | { 100 | "name" : "Jogendra Kumar", 101 | "imageurl" : "assets/img/mentors/jogendra.JPG", 102 | "about" : "Open Source Contributor | IIT Varanasi", 103 | "facebook" : "https://www.facebook.com/jogendra.singh24", 104 | "github" : "https://github.com/jogendra", 105 | "twitter" : "https://twitter.com/imjog24" 106 | } 107 | ] 108 | } 109 | -------------------------------------------------------------------------------- /data/participants.json: -------------------------------------------------------------------------------- 1 | { 2 | "participants": [ 3 | 4 | { 5 | "name": "Akinchan Lunavat", 6 | "imageurl": "", 7 | "about": "", 8 | "college": "IIIT Allahabad", 9 | "facebook": "", 10 | "github": "https://github.com/pal-0123", 11 | "website": "", 12 | "twitter": "", 13 | "referral": "" 14 | }, 15 | { 16 | "name": "Ankur Kesharwani", 17 | "imageurl": "assets/img/participants/kesari007.jpg", 18 | "about": "Writing code for the good", 19 | "college": "JIIT Noida", 20 | "facebook": "https://www.facebook.com/ankur.kesharwani2", 21 | "github": "https://github.com/kesari007", 22 | "website": "https://www.linkedin.com/in/kesari007", 23 | "twitter": "https://twitter.com/kesari007", 24 | "referral": "" 25 | }, 26 | { 27 | "name": "Deepak Katre", 28 | "imageurl": "", 29 | "about": "", 30 | "college": "IIIT Allahabad", 31 | "facebook": "", 32 | "github": "https://github.com/deepakDOTexe", 33 | "website": "", 34 | "twitter": "", 35 | "referral": "" 36 | }, 37 | { 38 | "name": " Vishal Mishra", 39 | "imageurl": "", 40 | "about": "Hii I am from IIITL and just got started with python progamming", 41 | "college": "IIIT Lucknow", 42 | "facebook": "https://www.facebook.com/profile.php?id=100026658502249", 43 | "github": "https://github.com/vcode11", 44 | "website": "", 45 | "twitter": "", 46 | "referral": "" 47 | }, 48 | { 49 | "name": "Shubham Kumar", 50 | "imageurl": "", 51 | "about": "", 52 | "college": "IIIT, Allahabad", 53 | "facebook": "", 54 | "github": "https://github.com/kumarshubham707", 55 | "website": "", 56 | "twitter": "", 57 | "referral": "mail" 58 | }, 59 | { 60 | "name": "Harsh Goyal", 61 | "imageurl": "", 62 | "about": "", 63 | "college": "IIIT, Allahabad", 64 | "facebook": "", 65 | "github": "https://github.com/HGOYAL015", 66 | "website": "", 67 | "twitter": "", 68 | "referral": "Friend" 69 | }, 70 | { 71 | "name": "Dhairya Patel", 72 | "imageurl": "", 73 | "about": "", 74 | "college": "IIIT, Allahabad", 75 | "facebook": "https://www.facebook.com/dhairya.patel.1800", 76 | "github": "https://github.com/thenullterminator", 77 | "website": "", 78 | "twitter": "", 79 | "referral": "mail" 80 | }, 81 | { 82 | "name": "Muskan Bansal", 83 | "imageurl": "", 84 | "about": "", 85 | "college": "IIIT, Lucknow", 86 | "facebook": "", 87 | "github": "https://github.com/crustyy", 88 | "website": "", 89 | "twitter": "", 90 | "referral": "mail" 91 | }, 92 | { 93 | "name": "Vikash Kumar", 94 | "imageurl": "assets/img/participants/vikash.jpg", 95 | "about": "MERN Stack Developer", 96 | "college": "IIIT, Allahabad", 97 | "facebook": "https://www.facebook.com/V1KaShKr", 98 | "github": "https://github.com/vikash-kr", 99 | "website": "", 100 | "twitter": "https://twitter.com/kvikash076", 101 | "referral": "mail" 102 | }, 103 | { 104 | "name": "Akshay Kalola", 105 | "imageurl": "assets/img/participants/AkshayKalola.jpg", 106 | "about": "Android Developer", 107 | "college": "SPCE, Anand", 108 | "facebook": "https://www.facebook.com/akshay.kalola28", 109 | "github": "https://github.com/akshaykalola28", 110 | "website": "", 111 | "twitter": "", 112 | "referral": "" 113 | }, 114 | { 115 | "name": "Wwar-lock", 116 | "imageurl": "assets/img/participants/Wwar-lock.jpeg", 117 | "about": "Believer", 118 | "college": "IIIT, Allahabad", 119 | "facebook": "https://www.facebook.com/wwarlock.3", 120 | "github": "https://github.com/Wwar-lock", 121 | "website": "", 122 | "twitter": "", 123 | "referral": "" 124 | }, 125 | { 126 | "name": "NamanDeept", 127 | "imageurl": "assets/img/participants/namandeept.jpg", 128 | "about": "Sikit Learner,Code for pragmatism", 129 | "college": "IIIT Allahabad", 130 | "facebook": "https://www.facebook.com/naman.deept.75", 131 | "github": "https://github.com/namandeept", 132 | "website": "", 133 | "twitter": "", 134 | "referral": "" 135 | }, 136 | { 137 | "name": "Archies11", 138 | "imageurl": "assets/img/participants/archisha.jpg", 139 | "about": "Curious mind keen to learn", 140 | "college": "IIIT, Allahabad", 141 | "facebook": "", 142 | "github": "", 143 | "website": "", 144 | "twitter": "", 145 | "referral": "" 146 | }, 147 | { 148 | "name": "Lekhika Dugtal", 149 | "imageurl": "assets/img/participants/lekhika.jpg", 150 | "about": "NPC of this virtual World", 151 | "college": "IIIT Allahabad", 152 | "facebook": "", 153 | "github": "https://github.com/CleverFool77", 154 | "website": "", 155 | "twitter": "https://twitter.com/DugtalLekhika", 156 | "referral": "" 157 | }, 158 | { 159 | "name": "Manish", 160 | "imageurl": "assets/img/participants/manish.jpg", 161 | "about": "love to learn", 162 | "college": "IIIT, Allahabad", 163 | "facebook": "https://www.facebook.com/manish.jagnani.9", 164 | "github": "https://github.com/Jaggu-123", 165 | "website": "", 166 | "twitter": "", 167 | "referral": "" 168 | }, 169 | { 170 | "name": "Balaji Meruva", 171 | "imageurl": "assets/img/participants/Euclid.jpg", 172 | "about": "***Stack Smashing Detected***", 173 | "college": "IIIT, Lucknow", 174 | "facebook": "https://www.facebook.com/profile.php?id=100008987648629", 175 | "github": "https://github.com/BLJS2warchief", 176 | "website": "https://bljs2warchief.github.io/projectRandom", 177 | "twitter": "", 178 | "referral": "" 179 | }, 180 | { 181 | "name": "Deepanshu Maheshwari", 182 | "imageurl": "", 183 | "about": "Love Developing", 184 | "college": "IIIT, Lucknow", 185 | "facebook": "https://www.facebook.com/ash.loiwal", 186 | "github": "https://github.com/ThunderrZero", 187 | "website": "", 188 | "twitter": "", 189 | "referral": "" 190 | }, 191 | { 192 | "name": "Lalit", 193 | "imageurl": "assets/img/participants/lalit.jpg", 194 | "about": "new to open source", 195 | "college": "IIIT, Allahabad", 196 | "facebook": "", 197 | "github": "https://github.com/Rattlecode17sh", 198 | "website": "", 199 | "twitter": "", 200 | "referral": "" 201 | }, 202 | { 203 | "name": "Ashish Agarowala", 204 | "imageurl": "assets/img/participants/ashish4321.jpg", 205 | "about": "want to learn open source", 206 | "college": "NIT, Durgaput", 207 | "facebook": "", 208 | "github": "https://github.com/ashish4321", 209 | "website": "https://ashish4321.github.io/My-Site", 210 | "twitter": "", 211 | "referral": "" 212 | }, 213 | { 214 | "name": "Neeraj Dwivedi", 215 | "imageurl": "assets/img/participants/Neeraj.jpg", 216 | "about": "OpenCode enthusiasts, Learner", 217 | "college": "SMS, Varanasi", 218 | "facebook": "", 219 | "github": "https://www.github.com/neerajd007", 220 | "website": "https://neerajd007.github.io", 221 | "twitter": "", 222 | "referral": "" 223 | }, 224 | { 225 | "name": "Dhairya Baweja", 226 | "imageurl": "assets/img/participants/dhairya.jpg", 227 | "about": "willing to learn", 228 | "college": "IIIT, Allahabad", 229 | "facebook": "", 230 | "github": "https://github.com/dhairyabaweja", 231 | "website": "", 232 | "twitter": "", 233 | "referral": "" 234 | }, 235 | { 236 | "name": "Sheik Mohammed Adil", 237 | "imageurl": "assets/img/participants/adil.jpg", 238 | "about": "UI Designer", 239 | "college": "PACE, Mangaluru", 240 | "facebook": "", 241 | "github": "http://github.com/mohammed-adil/", 242 | "website": "", 243 | "twitter": "https://twitter.com/_mohdAdil", 244 | "referral": "" 245 | }, 246 | { 247 | "name": "Vidhi Sah", 248 | "imageurl": "", 249 | "about": "love to learn", 250 | "college": "IIIT Allahabad", 251 | "facebook": "https://www.facebook.com/vidhi.sah.7", 252 | "github": "http://github.com/VidhiSah/", 253 | "website": "", 254 | "twitter": "", 255 | "referral": "" 256 | }, 257 | { 258 | "name": "Tushar Singh", 259 | "imageurl": "assets/img/participants/tushar.jpg", 260 | "about": "Web Developer", 261 | "college": "IIIT, Allahabad", 262 | "facebook": "https://www.facebook.com/tushar.niftyy", 263 | "github": "https://github.com/niftyy", 264 | "website": "", 265 | "twitter": "", 266 | "referral": "" 267 | }, 268 | { 269 | "name": "Ayush Verma", 270 | "imageurl": "assets/img/participants/punisher.jpg", 271 | "about": "The fall of dropping water wears away the stone", 272 | "college": "IIIT Allahabad", 273 | "facebook": "", 274 | "github": "http://github.com/punisher1151", 275 | "website": "", 276 | "twitter": "", 277 | "referral": "" 278 | }, 279 | { 280 | "name": "Harman Singh Jolly", 281 | "imageurl": "assets/img/participants/jolly.jpg", 282 | "about": "Ruby on Rails Developer", 283 | "college": "Bharati Vidyapeeth's College of Engineering, New Delhi", 284 | "facebook": "", 285 | "github": "http://github.com/coderjolly", 286 | "website": "", 287 | "twitter": "http://twitter.com/coderjolly", 288 | "referral": "" 289 | }, 290 | { 291 | "name": "Shubham Kumar", 292 | "imageurl": "assets/img/participants/dhruv-deshmukh-266273-unsplash.jpg", 293 | "about": "just started", 294 | "college": "IIIT, Allahabad", 295 | "facebook": "", 296 | "github": "http://github.com/0leve", 297 | "website": "", 298 | "twitter": "", 299 | "referral": "" 300 | }, 301 | { 302 | "name": "Ishan Agrawal", 303 | "imageurl": "assets/img/participants/ishan.jpg", 304 | "about": "Web Developer", 305 | "college": "IIIT Allahabad", 306 | "facebook": "https://www.facebook.com/ishan.agrawal.7524", 307 | "github": "https://github.com/barney-stinson", 308 | "website": "", 309 | "twitter": "", 310 | "referral": "" 311 | }, 312 | { 313 | "name": "Aayush Talesara", 314 | "imageurl": "assets/img/participants/open.jpeg", 315 | "about": "eager to learn opensource", 316 | "college": "IIIT Allahabad", 317 | "facebook": "https://www.facebook.com/aayush.talesara.7", 318 | "github": "https://github.com/elitesf", 319 | "website": "", 320 | "twitter": "", 321 | "referral": "" 322 | }, 323 | { 324 | "name": "Keshav Sharma", 325 | "imageurl": "assets/img/participants/Keshav.JPG", 326 | "about": "Full Stack Developer", 327 | "college": "IIIT Allahabad", 328 | "facebook": "", 329 | "github": "https://github.com/KeshavSharma21099", 330 | "website": "", 331 | "twitter": "", 332 | "referral": "" 333 | }, 334 | { 335 | "name": "B3ingALearner", 336 | "imageurl": "assets/img/participants/B3ingALearner.jpg", 337 | "about": "NewBie", 338 | "college": "IIIT Allahabad", 339 | "facebook": "", 340 | "github": "http://github.com/B3ingALearner", 341 | "website": "", 342 | "twitter": "", 343 | "referral": "" 344 | }, 345 | { 346 | "name": "amritansh6", 347 | "imageurl": "assets/img/participants/images(1).jpg", 348 | "about": "Want to learn", 349 | "college": "IIIT Allahabad", 350 | "facebook": "", 351 | "github": "http://github.com/amritansh6", 352 | "website": "", 353 | "twitter": "", 354 | "referral": "" 355 | }, 356 | { 357 | "name": "Ashutosh Mishra", 358 | "imageurl": "assets/img/participants/download.jpg", 359 | "about": "Hello I'm a web developer", 360 | "college": "IIIT ALLAHABAD", 361 | "facebook": "", 362 | "github": "https://github.com/ashumishra007", 363 | "website": "", 364 | "twitter": "", 365 | "referral": "" 366 | }, 367 | { 368 | "name": "Manthan Surkar", 369 | "imageurl": "https://en.gravatar.com/userimage/59390444/d267abe902e7f507e425febe985b3229.png?size=400", 370 | "about": "< ? ? >", 371 | "college": "IIIT Allahabad", 372 | "facebook": "www.facebook.com/ManthanRsurkar", 373 | "github": "http://github.com/thesmallstar/", 374 | "website": "", 375 | "twitter": "", 376 | "referral": "" 377 | }, 378 | { 379 | "name": "Aastha Kasera", 380 | "imageurl": "assets/img/participants/Astha.jpg", 381 | "about": "Want to learn open source", 382 | "college": "IIIT Allahabad", 383 | "facebook": "", 384 | "github": "http://github.com/littleprodigy", 385 | "website": "", 386 | "twitter": "", 387 | "referral": "" 388 | }, 389 | { 390 | "name": "Shivam Singhal", 391 | "imageurl": "assets/img/participants/shivhek25.jpg", 392 | "about": "Passionate Coder", 393 | "college": "NIT Durgapur", 394 | "facebook": "", 395 | "github": "", 396 | "website": "", 397 | "twitter": "", 398 | "referral": "ashish4321" 399 | }, 400 | { 401 | "name": "Amit Kumar", 402 | "imageurl": "assets/img/participants/amit.jpg", 403 | "about": "Here to Learn", 404 | "college": "IIIT Allahabad", 405 | "facebook": "", 406 | "github": "https://github.com/amitkr6211", 407 | "website": "", 408 | "twitter": "", 409 | "referral": "" 410 | }, 411 | { 412 | "name": "Rajat Sharma", 413 | "imageurl": "assets/img/participants/Rajat.jpg", 414 | "about": "Enthusiastic learner", 415 | "college": "IIIT Allahabad", 416 | "facebook": "", 417 | "github": "https://github.com/Rajatsharma1007", 418 | "website": "", 419 | "twitter": "", 420 | "referral": "" 421 | }, 422 | { 423 | "name": "Eishaan Singh", 424 | "imageurl": "assets/img/participants/code.jpg", 425 | "about": "Noobda", 426 | "college": "IIIT Allahabad", 427 | "facebook": "", 428 | "github": "https://github.com/eishaansingh", 429 | "website": "", 430 | "twitter": "", 431 | "referral": "" 432 | }, 433 | { 434 | "name": "Mohammad Amir", 435 | "imageurl": "assets/img/participants/images.jpg", 436 | "about": "", 437 | "college": "IIIT Allahabad", 438 | "facebook": "", 439 | "github": "https://github.com/chiillax", 440 | "website": "", 441 | "twitter": "", 442 | "referral": "" 443 | }, 444 | { 445 | "name": "Sourabh Pruthi", 446 | "imageurl": "assets/img/participants/sourabh1031.jpeg", 447 | "about": "A developer , Programmer ,FOSS Enthusiastic and much more...", 448 | "college": "DCRUST, Sonepat", 449 | "facebook": "", 450 | "github": "https://www.github.com/sourabh1031", 451 | "website": "", 452 | "twitter": "https://twitter.com/sourabh1031", 453 | "referral": "" 454 | }, 455 | { 456 | "name": "Palak Mittal", 457 | "imageurl": "", 458 | "about": "Love and learn every art on the wall", 459 | "college": "IIIT Allahabad", 460 | "facebook": "", 461 | "github": "https://github.com/palak2001", 462 | "website": "", 463 | "twitter": "", 464 | "referral": "" 465 | }, 466 | { 467 | "name": "Ishan Arora", 468 | "imageurl": "assets/img/participants/ishan.jpg", 469 | "about": "Exploring OpenSource", 470 | "college": "IIIT, Allahabad", 471 | "facebook": "", 472 | "github": "https://github.com/Ishaniiit", 473 | "website": "", 474 | "twitter": "", 475 | "referral": "" 476 | }, 477 | { 478 | "name": "raviteja ", 479 | "imageurl": "assets/img/participants/ravi.jpg", 480 | "about": "novice developer", 481 | "college": "IIIT Allahabad", 482 | "facebook": "", 483 | "github": "https://github.com/coding-clown", 484 | "website": "https://coding-clown.github.io", 485 | "twitter": "", 486 | "referral": "" 487 | }, 488 | { 489 | "name": "Saakshi Jain", 490 | "imageurl": "assets/img/participants/Saakshi.jpg", 491 | "about": "Passionate Learner", 492 | "college": "IIIT Lucknow", 493 | "facebook": "", 494 | "github": "https://github.com/sa4k5hi", 495 | "website": "", 496 | "twitter": "", 497 | "referral": "" 498 | }, 499 | { 500 | "name": "ANKUSH PANDEY ", 501 | "imageurl": "assets/img/participants/github.jpg", 502 | "about": "GROWING..", 503 | "college": "IIIT Allahabad", 504 | "facebook": "", 505 | "github": "https://github.com/lo0oper", 506 | "website": "", 507 | "twitter": "", 508 | "referral": "" 509 | }, 510 | { 511 | "name": "Nandini Goyal", 512 | "imageurl": "", 513 | "about": "", 514 | "college": "IIIT, Allahabad", 515 | "facebook": "", 516 | "github": "", 517 | "website": "", 518 | "twitter": "", 519 | "referral": "" 520 | }, 521 | { 522 | "name": "Jahanvi Bhadoria", 523 | "imageurl": "", 524 | "about": "Exploring Open code", 525 | "college": "IIIT Allahabad", 526 | "facebook": "", 527 | "github": "https://github.com/Jahanvi21", 528 | "website": "", 529 | "twitter": "", 530 | "referral": "" 531 | }, 532 | { 533 | "name": "Shantam Shrestha", 534 | "imageurl": "assets/img/participants/shantam.jpg", 535 | "about": "Budding Full stack developer", 536 | "college": "IIIT, Allahabad", 537 | "facebook": "", 538 | "github": "https://github.com/shantam0810", 539 | "website": "", 540 | "twitter": "", 541 | "referral": "" 542 | }, 543 | { 544 | "name": "Nitin kumar Madhukar", 545 | "imageurl": "assets/img/participants/nitin.jpg", 546 | "about": "", 547 | "college": "IIIT, Allahabad", 548 | "facebook": "", 549 | "github": "https://github.com/itsnkm2000", 550 | "website": "", 551 | "twitter": "", 552 | "referral": "" 553 | }, 554 | { 555 | "name": "Himanshu Janbandhu", 556 | "imageurl": "", 557 | "about": "", 558 | "college": "IIIT Allahabad", 559 | "facebook": "", 560 | "github": "https://github.com/HimanshuJanbandhu", 561 | "website": "", 562 | "twitter": "", 563 | "referral": "" 564 | }, 565 | { 566 | "name": "Sagar Lakhani", 567 | "imageurl": "assets/img/participants/sagar.jpg", 568 | "about": "", 569 | "college": "IIIT Allahabad", 570 | "facebook": "", 571 | "github": "https://github.com/SLakhani1", 572 | "website": "", 573 | "twitter": "", 574 | "referral": "" 575 | }, 576 | { 577 | "name": "Nikhil Goyal", 578 | "imageurl": "", 579 | "about": "Willing to learn along the way", 580 | "college": "IIIT, Allahabad", 581 | "facebook": "", 582 | "github": "https://github.com/Slimshadynick", 583 | "website": "", 584 | "twitter": "", 585 | "referral": "" 586 | }, 587 | { 588 | "name": "Priyesh Raj", 589 | "imageurl": "assets/img/participants/IMG_20180728_162500.jpg", 590 | "about": "Eat,Sleep,Learn,Repeat", 591 | "college": "IIIT Allahabad", 592 | "github": "https://github.com/ekthapriyesh24", 593 | "website": "", 594 | "twitter": "", 595 | "referral": "" 596 | }, 597 | { 598 | "name": "Kaushal Sahu", 599 | "imageurl": "assets/img/participants/kaushal.jpg", 600 | "about": "Coding Enthusiast", 601 | "college": "IIITA", 602 | "facebook": "", 603 | "github": "", 604 | "website": "", 605 | "twitter": "", 606 | "referral": "" 607 | }, 608 | { 609 | "name": "Vaibhav Shukla", 610 | "imageurl": "", 611 | "about": "", 612 | "college": "IIIT Allahabad", 613 | "facebook": "", 614 | "github": "https://github.com/vaibhav_1207", 615 | "website": "", 616 | "twitter": "", 617 | "referral": "" 618 | }, 619 | { 620 | "name": "Chaitali Agrawal", 621 | "imageurl": "", 622 | "about": "Exploring Opencode", 623 | "college": "IIIT ALLAHABAD", 624 | "facebook": "", 625 | "github": "https://github.com/chi50800", 626 | "website": "", 627 | "twitter": "", 628 | "referral": "" 629 | }, 630 | { 631 | "name": "Uddeept Shandilya", 632 | "imageurl": "", 633 | "about": "", 634 | "college": "IIIT Allahabad", 635 | "github": "https://github.com/me-stone", 636 | "website": "", 637 | "twitter": "", 638 | "referral": "" 639 | }, 640 | { 641 | "name": "vijit jain", 642 | "imageurl": "assets/img/participants/vj.jpg", 643 | "about": "", 644 | "college": "IIIT Allahabad", 645 | "github": "https://github.com/vj2000", 646 | "website": "", 647 | "twitter": "", 648 | "referral": "" 649 | }, 650 | { 651 | "name": "Cheena Budhiraja", 652 | "imageurl": "assets/img/participants/maxresdefault.jpg", 653 | "about": "a learner", 654 | "college": "IIIT Allahabad", 655 | "facebook": "", 656 | "github": "https://github.com/griffy06", 657 | "website": "", 658 | "twitter": "", 659 | "referral": "" 660 | }, 661 | { 662 | "name": "Abhaya Sharma", 663 | "imageurl": "assets/img/participants/Abhaya.jpg", 664 | "about": "Inquisitive", 665 | "college": "IIIT Allahabad", 666 | "facebook": "", 667 | "github": "https://github.com/zoobydoobydoo", 668 | "website": "", 669 | "twitter": "", 670 | "referral": "" 671 | }, 672 | { 673 | "name": "Prateek", 674 | "imageurl": "assets/img/participants/prateek76.jpg", 675 | "about": "?", 676 | "college": "IIIT Allahabad", 677 | "facebook": "https://www.facebook.com/prateek.17.xx.1999", 678 | "github": "https://github.com/prateek76", 679 | "website": "", 680 | "twitter": "https://twitter.com/Prateek97923412", 681 | "referral": "I saw it somewhere,I don't remember where" 682 | }, 683 | { 684 | "name": "Anmol Chaddha", 685 | "imageurl": "assets/img/participants/anmol.jpg", 686 | "about": "A newbie to opensource", 687 | "college": "IIT Patna", 688 | "facebook": "", 689 | "github": "https://github.com/chanmol1999", 690 | "website": "", 691 | "twitter": "", 692 | "referral": "a friend" 693 | }, 694 | { 695 | 696 | "name": "Mansi Sharma", 697 | "imageurl": "assets/img/participants/mansi.jpg", 698 | "about": "", 699 | "college": "IIIT Allahabad", 700 | "facebook": "https://www.facebook.com/profile.php?id=100007309844750", 701 | "github": "https://github.com/sharmamansi", 702 | "website": "", 703 | "twitter": "", 704 | "referral": "" 705 | }, 706 | { 707 | "name": "Ritik Harchani", 708 | "imageurl": "", 709 | "about": "Started OpenCode19", 710 | "college": "IIIT, Allahabad", 711 | "facebook": "", 712 | "github": "https://github.com/harchani-ritik", 713 | "website": "", 714 | "twitter": "", 715 | "referral": "" 716 | }, 717 | { 718 | "name": "Kumar Ujjwaldisha Batra", 719 | "imageurl": "", 720 | "about": "Hello I'm a web developer", 721 | "college": "IIIT Allahabad", 722 | "facebook": "https://www.facebook.com/ujjwal.batra.79", 723 | "github": "https://github.com/ujjwal-batra", 724 | "website": "", 725 | "twitter": "", 726 | "referral": "" 727 | }, 728 | { 729 | "name": "Neelabh Gupta", 730 | "imageurl": "assets/img/participants/neelabh.jpg", 731 | "about": "", 732 | "college": "IIIT, Allahabad", 733 | "facebook": "https://www.facebook.com/neelabh.gupta.56", 734 | "github": "https://github.com/Neelabh46", 735 | "website": "", 736 | "twitter": "", 737 | "referral": "" 738 | }, 739 | { 740 | "name": "Arpit Bhatt", 741 | "imageurl": "", 742 | "about": "", 743 | "college": "IIIT Allahabad", 744 | "facebook": "", 745 | "github": "https://github.com/brownsands", 746 | "website": "", 747 | "twitter": "", 748 | "referral": "" 749 | }, 750 | { 751 | "name": "Hardik Kumawat", 752 | "imageurl": "", 753 | "about": "Stepping for the thousand miles", 754 | "college": "IIIT, Allahabad", 755 | "facebook": "", 756 | "github": "https://github.com/caperdango", 757 | "website": "", 758 | "twitter": "", 759 | "referral": "" 760 | }, 761 | { 762 | "name": "Rohini13", 763 | "imageurl": "", 764 | "about": "Escaping the ordinary", 765 | "college": "IIITA", 766 | "facebook": "", 767 | "github": "https://github.com/Rohini13", 768 | "website": "", 769 | "twitter": "", 770 | "referral": "" 771 | }, 772 | { 773 | "name": "Meghna", 774 | "imageurl": "", 775 | "about": "Keen learner and explorer", 776 | "college": "IIIT,Allahabad", 777 | "facebook": "https://www.facebook.com/meghna.batra.7", 778 | "github": "http://github.com/batra-meghna", 779 | "website": "", 780 | "twitter": "", 781 | "referral": "" 782 | }, 783 | { 784 | "name": "Abhishek Mishra", 785 | "imageurl": "assets/img/participants/Abhishek.jpg", 786 | "about": "", 787 | "college": "IIIT Allahabad", 788 | "facebook": "https://www.facebook.com/profile.php?id=100005016060283", 789 | "github": "https://github.com/iit2018026", 790 | "website": "", 791 | "twitter": "", 792 | "referral": "" 793 | }, 794 | { 795 | "name": "Kartik Nema", 796 | "imageurl": "", 797 | "about": "", 798 | "college": "IIIT, Allahabad", 799 | "facebook": "", 800 | "github": "https://github.com/Kartik2301", 801 | "website": "", 802 | "twitter": "", 803 | "referral": "" 804 | }, 805 | { 806 | "name": "Shreyansh Sahu", 807 | "imageurl": "assets/img/participants/shreyansh.jpg", 808 | "about": "Android App Developer", 809 | "college": "IIIT Allahabad", 810 | "facebook": "https://www.facebook.com/shreyansh.sahu.9", 811 | "github": "https://github.com/23nobody", 812 | "website": "", 813 | "twitter": "", 814 | "referral": "" 815 | }, 816 | { 817 | "name": "Ravi Kumar", 818 | "imageurl": "", 819 | "about": "", 820 | "college": "IIIT Allahabad", 821 | "facebook": "", 822 | "github": "https://github.com/rvid2w", 823 | "website": "", 824 | "twitter": "", 825 | "referral": "" 826 | }, 827 | { 828 | "name": "Vishnu K Raman", 829 | "imageurl": "assets/img/participants/Vishnuk7.jpg", 830 | "about": "a learner", 831 | "college": "Amirta School of Arts and Sciences", 832 | "facebook": "https://www.facebook.com/vishnu.kraman", 833 | "github": "https://github.com/vishnuk7", 834 | "website": "", 835 | "twitter": "", 836 | "referral": "" 837 | }, 838 | { 839 | "name": "Anupam Shukla", 840 | "imageurl": "assets/img/participants/Anupam.jpg", 841 | "about": "Front end web developer", 842 | "college": "Amrita school of arts and sciences, Mysore", 843 | "facebook": "https://facebook.com/anupam.shukla141", 844 | "github": "https://github.com/anupm12", 845 | "website": "https://web-salon.netlify.com", 846 | "twitter": "", 847 | "referral": "" 848 | }, 849 | { 850 | "name": "Nishant Sharma", 851 | "imageurl": "assets/img/participants/nishant.jpg", 852 | "about": "Getting into opensource", 853 | "college": "IIIT Allahabad", 854 | "facebook": "", 855 | "github": "https://github.com/supremenishant", 856 | "website": "", 857 | "twitter": "", 858 | "referral": "" 859 | }, 860 | { 861 | "name": "Harshit Singh", 862 | "imageurl": "assets/img/participants/harshit.jpg", 863 | "about": "Believer", 864 | "college": "BIT Mesra, Ranchi", 865 | "facebook": "https://www.facebook.com/Harshit966", 866 | "github": "https://github.com/helios1101", 867 | "website": "https://helios1101.github.io", 868 | "twitter": "", 869 | "referral": "" 870 | }, 871 | { 872 | "name": "Rishabh Shukla", 873 | "imageurl": "assets/img/participants/blurry.jpg", 874 | "about": "Hey!", 875 | "college": "IIIT Lucknow", 876 | "facebook": "https://www.facebook.com/firela007", 877 | "github": "https://github.com/Firela", 878 | "website": "", 879 | "twitter": "", 880 | "referral": "" 881 | }, 882 | { 883 | "name": "Parag Goyal", 884 | "imageurl": "", 885 | "about": "I will win, not immediately, but definitely....", 886 | "college": "IIIT Allahabad", 887 | "facebook": "", 888 | "github": "https://github.com/parag1201", 889 | "website": "", 890 | "twitter": "", 891 | "referral": "" 892 | }, 893 | { 894 | "name": "Agamjot Singh", 895 | "imageurl": "", 896 | "about": "new to github", 897 | "college": "IIIT Allahabad", 898 | "github": "https://github.com/agamjotpanesar", 899 | "website": "", 900 | "twitter": "", 901 | "referral": "" 902 | }, 903 | { 904 | "name": "Puja Kumari", 905 | "imageurl": "assets/img/participants/Puja.jpg", 906 | "about": "Learner", 907 | "college": "IIIT Allahabad", 908 | "facebook": "", 909 | "github": "https://github.com/Pujastar", 910 | "website": "", 911 | "twitter": "", 912 | "referral": "" 913 | }, 914 | { 915 | "name": "Tarun Asudani", 916 | "imageurl": "", 917 | "about": "", 918 | "college": "IIIT Allahabad", 919 | "github": "https://github.com/Tarunasudani", 920 | "website": "", 921 | "twitter": "", 922 | "referral": "" 923 | 924 | }, 925 | { 926 | "name": "VIDUR KATARIA", 927 | "imageurl": "assets/img/participants/vidur.jpg", 928 | "about": "Novice", 929 | "college": "IIIT Allahabad", 930 | "github": "https://github.com/kavi-12", 931 | "website": "", 932 | "twitter": "", 933 | "referral": "" 934 | }, 935 | { 936 | "name": "Aman Sokhal", 937 | "imageurl": "assets/img/participants/aman.jpg", 938 | "about": "Begginer", 939 | "college": "IIIT, Allahabad", 940 | "facebook": "https://www.facebook.com/amansokha0001", 941 | "github": "https://github.com/Amansokhal", 942 | "website": "", 943 | "twitter": "", 944 | "referral": "" 945 | }, 946 | { 947 | "name": "Priyatam Reddy Somagattu", 948 | "imageurl": "", 949 | "about": "", 950 | "college": "IIIT Allahabad", 951 | "github": "https://github.com/Pri1437", 952 | "website": "", 953 | "twitter": "", 954 | "referral": "" 955 | }, 956 | { 957 | "name": "Bindu", 958 | "imageurl": "assets/img/participants/bindu.jpg", 959 | "about": "Learner", 960 | "college": "IIIT Allahabad", 961 | "github": "https://github.com/BinduVerma123", 962 | "website": "", 963 | "twitter": "", 964 | "referral": "" 965 | }, 966 | { 967 | "name": "Nikhilesh Kumar", 968 | "imageurl": "assets/img/participants/DSC_0113_02.jpg", 969 | "about": "", 970 | "college": "IIIT Allahabad", 971 | "facebook": "https://www.facebook.com/nikhilesh.kr23", 972 | "github": "https://github.com/gobblerXD", 973 | "website": "", 974 | "twitter": "", 975 | "referral": "" 976 | }, 977 | { 978 | "name": "Nitin Mathur", 979 | "imageurl": "", 980 | "about": "", 981 | "college": "IIIT Allahabad", 982 | "github": "https://github.com/nitinmathur1998", 983 | "website": "", 984 | "twitter": "", 985 | "referral": "" 986 | }, 987 | { 988 | "name": "Abhinav2023", 989 | "imageurl": "assets/img/participants/Abhinav2023.jpg", 990 | "about": "Android Developer", 991 | "college": "IIIT, Allahabad", 992 | "facebook": "", 993 | "github": "https://github.com/Abhinav2023", 994 | "website": "", 995 | "twitter": "", 996 | "referral": "" 997 | }, 998 | { 999 | "name": "Achint Agrawal", 1000 | "imageurl": "assets/img/participants/Achint.jpg", 1001 | "about": "Designer", 1002 | "college": "IIIT Allahabad", 1003 | "github": "https://github.com/achintagrawal", 1004 | "website": "", 1005 | "twitter": "", 1006 | "referral": "" 1007 | }, 1008 | { 1009 | "name": "Shivam Chhabra", 1010 | "imageur1": "", 1011 | "about": "", 1012 | "college": "IIIT Allahabad", 1013 | "github": "https://github.com/shivam0211", 1014 | "website": "", 1015 | "twitter": "", 1016 | "referral": "" 1017 | }, 1018 | { 1019 | "name": "Jishan Singh", 1020 | "imageurl": "", 1021 | "about": "", 1022 | "college": "IIIT, Allahabad", 1023 | "facebook": "", 1024 | "github": "https://github.com/jishansingh", 1025 | "website": "", 1026 | "twitter": "", 1027 | "referral": "mail" 1028 | }, 1029 | { 1030 | "name": "Akhil Shukla", 1031 | "imageurl": "", 1032 | "about": "", 1033 | "college": "IIIT, Allahabad", 1034 | "facebook": "", 1035 | "github": "https://github.com/ak0005", 1036 | "website": "", 1037 | "twitter": "", 1038 | "referral": "" 1039 | }, 1040 | { 1041 | "name": "Prijesh Bhingradiya", 1042 | "imageurl": "", 1043 | "about": "Priszzz Here!!!", 1044 | "college": "LDCE, Ahemdabad", 1045 | "facebook": "", 1046 | "github": "https://github.com/prijeshb", 1047 | "website": "", 1048 | "twitter": "", 1049 | "referral": "Instagram" 1050 | }, 1051 | { 1052 | "name": "Dev Gupta", 1053 | "imageurl": "assets/img/participants/devgupta2607.jpg", 1054 | "about": "I am a web developer and a Python enthusiast.", 1055 | "college": "Delhi Technological University", 1056 | "facebook": "", 1057 | "github": "https://github.com/devgupta2607", 1058 | "website": "", 1059 | "twitter": "", 1060 | "referral": "Instagram" 1061 | }, 1062 | { 1063 | "name": "Aditya Kumar", 1064 | "imageurl": "assets/img/participants/devill71.jpg", 1065 | "about": "", 1066 | "college": "IIIT A", 1067 | "facebook": "", 1068 | "github": "https://github.com/devill71", 1069 | "website": "", 1070 | "twitter": "", 1071 | "referral": "" 1072 | }, 1073 | { 1074 | "name": "Anuj Mittal", 1075 | "imageurl": "", 1076 | "about": "", 1077 | "college": "IIIT Allahabad", 1078 | "facebook": "", 1079 | "github": "https://github.com/Anuj-Mittal", 1080 | "website": "", 1081 | "twitter": "", 1082 | "referral": "" 1083 | }, 1084 | { 1085 | "name": "Prijesh Bhingradiya", 1086 | "imageurl": "", 1087 | "about": "Priszzz Here!!!", 1088 | "college": "LDCE, Ahemdabad", 1089 | "facebook": "", 1090 | "github": "https://github.com/prijeshb", 1091 | "website": "", 1092 | "twitter": "", 1093 | "referral": "Instagram" 1094 | }, 1095 | { 1096 | "name": "Dev Gupta", 1097 | "imageurl": "assets/img/participants/devgupta2607.jpg", 1098 | "about": "I am a web developer and a Python enthusiast.", 1099 | "college": "Delhi Technological University", 1100 | "facebook": "", 1101 | "github": "https://github.com/devgupta2607", 1102 | "website": "", 1103 | "twitter": "", 1104 | "referral": "Instagram" 1105 | }, 1106 | { 1107 | "name": "Suneet Kumar Makkar", 1108 | "imageurl": "", 1109 | "about": "", 1110 | "college": "IIIT A", 1111 | "facebook": "", 1112 | "github": "https://github.com/SuneetKumar19", 1113 | "website": "", 1114 | "twitter": "", 1115 | "referral": "" 1116 | }, 1117 | { 1118 | "name" : "Sagnik Mandal", 1119 | "imageurl" : "", 1120 | "about" : "Hello I'm a 12 year old app developer", 1121 | "college" : "", 1122 | "facebook" : "", 1123 | "github" : "https://github.com/SagnikMandal", 1124 | "website": "", 1125 | "twitter" : "https://twitter.com/CitiznSagnik", 1126 | "referral" : "" 1127 | }, 1128 | { 1129 | "name" : "Vishvajeet", 1130 | "imageurl" : "assets/img/participants/vishvajeet.jpg", 1131 | "about" : "", 1132 | "college" : "", 1133 | "facebook" : "", 1134 | "github" : "https://github.com/mivishvajeet", 1135 | "website": "", 1136 | "twitter" : "https://twitter.com/mivishvajeet", 1137 | "referral" : "" 1138 | } 1139 | ] 1140 | } 1141 | -------------------------------------------------------------------------------- /data/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ 3 | { 4 | "name": "OpenCode Collaborative", 5 | "imageurl": "assets/img/projects/opencode.jpg", 6 | "mentors": "Team OpenCode", 7 | "about": "A collaborative website created by particpants of opencode'18.", 8 | "lang": "HTML, JavaScript, CSS", 9 | "github": "https://github.com/opencodeiiita/Opencode-Collaborative-19" 10 | }, 11 | { 12 | "name": "Technical-Writing", 13 | "imageurl": "assets/img/projects/nybles.jpg", 14 | "mentors": "Team OpenCode", 15 | "about": "Submit your blog on nybles", 16 | "lang": "", 17 | "github": "https://github.com/opencodeiiita/Technical-Writing" 18 | }, 19 | { 20 | "name": "Competitive Coding", 21 | "imageurl": "assets/img/projects/ccoding.jpg", 22 | "mentors": "Kumar Raju", 23 | "about": "A project aimed at encouraging the competitive coding skills of novices", 24 | "lang": "C++, Python, Java, C", 25 | "github": "https://github.com/opencodeiiita/Competitive_Coding" 26 | }, 27 | { 28 | "name": "Cynthesize", 29 | "imageurl": "assets/img/projects/cynthesize.jpeg", 30 | "mentors": "Siddhant Shrivastava, Aayush Joglekar", 31 | "about": "Cythesize aims to solve the bridge between mentors and students for development, designing and other fields.", 32 | "lang": "Angular, SASS", 33 | "github": "https://github.com/Cynthesize-temp/frontend" 34 | }, 35 | { 36 | "name": "ToDO-List-App", 37 | "imageurl": "assets/img/projects/android.jpg", 38 | "mentors": "Team OpenCode", 39 | "about": "A very basic ToDo List Application for all the Android Enthusiasts !", 40 | "lang": "Java", 41 | "github": "https://github.com/opencodeiiita/ToDo-List-App" 42 | }, 43 | { 44 | "name": "Sassy-Css", 45 | "imageurl": "assets/img/projects/css.jpg", 46 | "mentors": "Team OpenCode", 47 | "about": "Showcasing your amazing pure CSS interfaces & artworks.", 48 | "lang": "css scss html", 49 | "github": "https://github.com/opencodeiiita/sassy-css" 50 | }, 51 | { 52 | "name": "Road-CS", 53 | "imageurl": "assets/img/projects/cs.jpg", 54 | "mentors": "Vijeta", 55 | "about": "Road for Entering the world of Cyber Security", 56 | "lang": "Linux Kali", 57 | "github": "https://github.com/opencodeiiita/Road-CS" 58 | }, 59 | { 60 | "name": "opencodebot", 61 | "imageurl": "assets/img/projects/opencodebot.jpg", 62 | "mentors": "Team OpenCode", 63 | "about": "A GitHub App built with Probot that Manages workflow on github for OpenCode organization", 64 | "lang": "js npm json", 65 | "github": "https://github.com/opencodeiiita/opencodebot" 66 | }, 67 | { 68 | "name": "Machine Learning", 69 | "imageurl": "assets/img/projects/ml.jpeg", 70 | "mentors": "Team OpenCode", 71 | "about": "A repository for basic Machine Learning algorithms and Assignments.", 72 | "lang": "Python", 73 | "github": "https://github.com/opencodeiiita/Machine-Learning" 74 | }, 75 | { 76 | "name": "GirlsDoCode", 77 | "imageurl": "assets/img/projects/opencodebot.jpg", 78 | "mentors": "Team OpenCode", 79 | "about": "A Project to encourage the envolvement of girls in opensource", 80 | "lang": "js css html", 81 | "github": "https://github.com/opencodeiiita/GirlsDoCode" 82 | }, 83 | { 84 | "name": "Selena-Gomez-Discography", 85 | "imageurl": "assets/img/projects/music.jpg", 86 | "mentors": "Niharika Shrivastava", 87 | "about": "One Pager containing all of the albums, songs, singles ", 88 | "lang": "HTML CSS JS", 89 | "github": "https://github.com/OrionStar25/Selena-Gomez-Discography" 90 | }, 91 | { 92 | "name": "File-Creator-CLI", 93 | "imageurl": "assets/img/projects/filecreator.jpg", 94 | "mentors": "Debasish Sahoo", 95 | "about": "A simple Command Line application which allows you to create files in your directory/folder, with all types of file extension in a more interactive way.", 96 | "lang": "Nodejs npm-package cli", 97 | "github": "https://github.com/debck/File-Creator-CLI" 98 | }, 99 | { 100 | "name": "ComputerVision", 101 | "imageurl": "assets/img/projects/cv.jpg", 102 | "mentors": "Yash Agarwal", 103 | "about": "Collection of cool projects using Image Recognition", 104 | "lang": "Tensorflow MachineLearning", 105 | "github": "https://github.com/yash-agarwal17/ComputerVision" 106 | }, 107 | { 108 | "name": "Wall-Street", 109 | "imageurl": "assets/img/projects/stock.jpg", 110 | "mentors": "Jigar", 111 | "about": "A React Based Web App that allows you to trade virtually", 112 | "lang": "Nodejs react redux jwt typescript", 113 | "github": "https://github.com/Jigar3/Wall-Street" 114 | }, 115 | { 116 | "name": "kasper_music_player", 117 | "imageurl": "assets/img/projects/music-player.jpg", 118 | "mentors": "Sanskar Jethi", 119 | "about": "An app that would allow \"music.youtube.com\" to work in India", 120 | "lang": "Flask React Json", 121 | "github": "https://github.com/stealthanthrax/kasper_music_player" 122 | }, 123 | { 124 | "name": "HealthLedger", 125 | "imageurl": "assets/img/projects/heart.jpg", 126 | "mentors": "Jogendra Kumar", 127 | "about": "Application for tracking Organs donations in hospitals and minimizing the scope of Organ trafficking using Blockchain (Hyperledger) technology. ", 128 | "lang": "Blockchain hyperledger", 129 | "github": "https://github.com/jogendra/HealthLedger" 130 | }, 131 | { 132 | "name": "ResearchFLO", 133 | "imageurl": "assets/img/projects/research.jpg", 134 | "mentors": "PayTM - Build For India", 135 | "about": "An open access journal that aims to ​ promote research among students in India from a very tender age​ . Deployed on AWS.", 136 | "lang": "aws flask mongoDb html css js", 137 | "github": "https://github.com/PaytmBuildForIndia/ResearchFLO" 138 | }, 139 | { 140 | "name": "Leave Application Portal", 141 | "imageurl": "assets/img/projects/lap.jpg", 142 | "mentors": "Prateek", 143 | "about": "Leave application portal for IIIT-A to speed up leave approval process.", 144 | "lang": "Html css js PHP", 145 | "github": "https://github.com/GeekHaven/Leave-Application-Portal" 146 | } 147 | ] 148 | } 149 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Opencode 2019 Collaborative 12 | 13 | 14 | 15 | 16 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 47 | 48 | 49 | 50 | 51 | Fork me on GitHub 53 | 54 | 55 | 108 | 109 | 110 |
111 |

Hello, world!

112 |

Welcome to OpenCode'19

113 | 114 | 115 | 116 |
117 |
118 | 125 |
126 |
127 | 128 | 129 | 130 |
131 |
OpenCode Countdown
132 |
133 |
120
134 |
135 |
4
136 |
:
137 |
12
138 |
:
139 |
22
140 |
141 |
142 |
Days
143 |
HH
144 |
MM
145 |
SS
146 |
147 |
148 |
149 | 150 | 151 |
152 | 153 | 154 |
155 |
156 |

Participants

157 |
158 |
159 |
160 | 161 |
162 | 163 | 164 |
165 | 182 |
183 | 184 | 185 |
186 |
187 |

Mentors

188 |
189 |
190 |
191 | 192 |
193 | 194 | 195 |
196 |
197 |

Projects

198 |
199 |
200 | 201 |
202 | 203 |
204 | 205 | 219 | 220 | 221 |
222 | 239 |
240 | 241 | 242 | 243 | 244 |
245 |
246 |

Participant games

247 |
248 |
249 |
250 | 251 |
252 |
253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 |
261 | 262 | 263 | × 264 | 265 | 266 |
267 | 276 |
277 |
278 | 279 | 280 | 281 |
282 | 283 | 284 | × 285 | 286 | 287 |
288 | 298 |
299 |
300 | 301 | 302 | 303 |
304 | 305 | 306 | × 307 | 308 | 309 |
310 | 319 |
320 |
321 | 322 | 323 | 324 |
325 | 326 | 327 | × 328 | 329 | 330 |
331 | 340 |
341 |
342 | 343 | 344 | 345 |
346 | 347 | 348 | × 349 | 350 | 351 |
352 | 361 |
362 |
363 | 364 | 365 | 366 |
367 | 368 | 369 | × 370 | 371 | 372 |
373 | 382 |
383 |
384 | 385 | 386 | 387 |
388 | 389 | 390 | × 391 | 392 | 393 |
394 | 403 |
404 |
405 | 406 | 407 | 408 |
409 | 410 | 411 | × 412 | 413 | 414 |
415 | 424 |
425 |
426 | 427 | 428 | 429 | 430 | 431 | 432 |
433 | 434 | 435 | × 436 | 437 | 438 |
439 | 448 |
449 |
450 | 451 | 452 |
453 | 454 | 455 | × 456 | 457 | 458 |
459 | 468 |
469 |
470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 |
482 | 483 | 484 | × 485 | 486 | 487 |
488 | 498 |
499 |
500 | 501 | 502 | 503 |
504 | 505 | 506 | × 507 | 508 | 509 |
510 | 519 |
520 |
521 | 522 | 523 | 524 |
525 | 526 | 527 | × 528 | 529 | 530 |
531 | 540 |
541 |
542 | 543 | 544 | 545 |
546 | 547 | 548 | × 549 | 550 | 551 |
552 | 561 |
562 |
563 | 564 | 565 | 566 |
567 | 568 | 569 | × 570 | 571 | 572 |
573 | 583 |
584 |
585 | 586 | 587 | 588 |
589 | 590 | 591 | × 592 | 593 | 594 |
595 | 604 |
605 |
606 | 607 | 608 | 609 |
610 | 611 | 612 | × 613 | 614 | 615 |
616 | 625 |
626 |
627 | 628 | 629 | 630 |
631 | 632 | 633 | × 634 | 635 | 636 |
637 | 646 |
647 |
648 | 649 | 650 | 651 |
652 | 653 | 654 | × 655 | 656 | 657 |
658 | 668 |
669 |
670 | 671 | 672 | 673 | 674 | 675 | 676 | 677 | 678 | 679 | 680 |
681 | 682 | 683 | × 684 | 685 | 686 |
687 | 696 |
697 |
698 | 699 | 700 | 701 |
702 | 703 | 704 | × 705 | 706 | 707 |
708 | 718 |
719 |
720 | 721 | 722 | 723 | 724 | 725 |
726 |

Issues

727 |
728 | 729 |
730 |
731 | 732 |
733 |
734 | 735 |
736 |
737 | 738 |
739 |
740 | 741 | 742 | 743 |
744 |
745 | 746 |
747 |
748 | 749 |
750 |
751 | 752 |
753 |
754 | 755 | 756 |
757 |
758 | 759 |
760 | 761 |
762 | 763 |
764 | 765 |
766 | 767 |
768 | 769 | 770 |
771 | 772 | 773 | 774 | 775 | 776 |
777 | 778 | 779 |
780 | 781 |
782 | 783 |
784 | 785 |
786 | 787 |
788 | 789 |
790 | 791 |
792 | 793 | 794 | 795 | 796 |
797 | 798 | 799 |
800 | 801 |
802 | 803 |
804 | 805 |
806 | 807 |
808 | 809 |
810 | 811 |
812 | 813 | 814 | 815 | 816 | 817 | 818 | 819 | 820 | 821 |
822 |
823 | 824 |
825 |
826 | 827 |
828 |
829 | 830 |
831 |
832 | 833 | 834 | 835 | 836 | 837 | 838 | 839 | 840 | 841 | 842 |
843 |
844 | 845 |
846 |
847 | 848 |
849 |
850 | 851 |
852 |
853 | 854 | 855 | 856 | 857 | 858 | 859 | 860 | 861 | 862 | 863 | 864 |
865 | 866 | 867 | 868 |
869 | 880 | 883 | 884 | 885 |
886 | 887 | 888 | 889 |
890 |
891 |
892 | 893 | 894 | 895 | 896 | 897 | 898 | 899 | 900 | 901 | 902 | 903 | 904 | 942 | 943 | 944 | -------------------------------------------------------------------------------- /js/issue-fetch.js: -------------------------------------------------------------------------------- 1 | var per_page = 15; 2 | 3 | function loadMoreIssues(user, repo) { 4 | // Which set of issues (page number) to be loaded is determined by how many issues are already loaded 5 | var page = Math.ceil($('#' + user + '-' + repo + '-issues > div').length / per_page) + 1; 6 | 7 | 8 | $.getJSON("https://api.github.com/repos/" + user + "/" + repo +"/issues?q=state:open&page=" + page + "&per_page=" + per_page, function(data) { 9 | // Callback function 10 | 11 | // Iterate over each issue 12 | $(data).each(function(index) { 13 | if (this.pull_request) { 14 | // If this issue is a pull request, append empty div and continue 15 | $('#' + user + '-' + repo + '-issues').append("
"); 16 | return; // Equivalent to continue in jQuery 17 | } 18 | 19 | var issue_url = this.html_url; 20 | var title = this.title; 21 | var author = this.user.login; 22 | var author_url = this.user.html_url; 23 | var labels = ""; 24 | var issue_type = ''; 25 | var repo_url = "https://github.com/" + user + "/" + repo; 26 | var repo_name = repo; 27 | 28 | $(this.labels).each(function(index) { 29 | labels += ' '; 30 | }); 31 | 32 | var issue_markup = 33 | '
' + 34 | '
' + 35 | '
' + 36 | '' +title+ ' ' + 37 | ''+author+' in ' + 38 | ''+repo_name+' ' + 39 | '' +labels+ '' + 40 | '
' + 41 | '
' + 42 | '
' ; 43 | 44 | $('#' + user + '-' + repo + '-issues').append(issue_markup); 45 | }); 46 | 47 | if ($('#' + user + '-' + repo + '-issues > div').length % per_page !== 0) { 48 | $('#' + user + '-' + repo + '-load-more').remove(); 49 | } 50 | }); 51 | } -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- 1 | window.onscroll = function() { 2 | scrollFunction(); 3 | }; 4 | 5 | function scrollFunction() { 6 | if ( 7 | document.body.scrollTop > 2000 || 8 | document.documentElement.scrollTop > 2000 9 | ) { 10 | document.getElementById("myBtn").style.display = "block"; 11 | } else { 12 | document.getElementById("myBtn").style.display = "none"; 13 | } 14 | } 15 | 16 | // When the user clicks on the button, scroll to the top of the document 17 | function topFunction() { 18 | document.body.scrollTop = 0; 19 | document.documentElement.scrollTop = 0; 20 | } 21 | 22 | // For countdown timer 23 | function countdown(){ 24 | var now = new Date(); 25 | var eventDate = new Date(2019, 1, 12); 26 | 27 | var currentTime = now.getTime(); 28 | var eventTime = eventDate.getTime(); 29 | 30 | var remTime = eventTime - currentTime; 31 | 32 | var s = Math.floor(remTime / 1000); 33 | var m = Math.floor(s / 60); 34 | var h = Math.floor(m / 60); 35 | var d = Math.floor(h / 24); 36 | 37 | h %= 24; 38 | m %= 60; 39 | s %= 60; 40 | 41 | 42 | h = (h < 10) ? "0" + h : h ; 43 | m = (m < 10) ? "0" + m : m ; 44 | s = (s < 10) ? "0" + s : s; 45 | 46 | document.getElementById("days").textContent = d; 47 | document.getElementById("days").innerText = d; 48 | 49 | document.getElementById("hours").textContent = h; 50 | document.getElementById("minutes").textContent = m; 51 | document.getElementById("seconds").textContent = s; 52 | 53 | setTimeout(countdown, 1000); 54 | 55 | 56 | } 57 | countdown(); 58 | 59 | $(document).ready(function() { 60 | var mentors; 61 | var participants; 62 | var projects; 63 | var games; 64 | 65 | var mentorsJson = "data/mentors.json"; 66 | var participantsJson = "data/participants.json"; 67 | var projectsJson = "data/projects.json"; 68 | var gamesJson = "data/games.json"; 69 | 70 | $.ajaxSetup({ 71 | beforeSend: function(xhr) { 72 | if (xhr.overrideMimeType) { 73 | xhr.overrideMimeType("application/json"); 74 | } 75 | } 76 | }); 77 | 78 | $.getJSON(mentorsJson, function(data) { 79 | mentors = data.mentors; 80 | mentors.sort((a, b) => { 81 | if (a.name < b.name) { 82 | return -1; 83 | } 84 | if (a.name > b.name) { 85 | return 1; 86 | } 87 | }); 88 | console.log(mentors); 89 | $.each(mentors, function(i, mentor) { 90 | if (/^ *$/.test(mentor.imageurl) || mentor.imageurl == "") { 91 | //regex to check empty string or spaces 92 | 93 | mentor.imageurl = 94 | "https://image.flaticon.com/icons/svg/1141/1141771.svg"; 95 | //Icon made by Freepik from www.flaticon.com *credits* 96 | } else { 97 | var url = mentor.imageurl; 98 | //console.log(url); 99 | 100 | try { 101 | var http = new XMLHttpRequest(); 102 | http.open("HEAD", url, false); 103 | http.send(); 104 | 105 | if (http.status == 404) { 106 | mentor.imageurl = 107 | "https://image.flaticon.com/icons/svg/1141/1141771.svg"; 108 | } 109 | } catch (err) {} 110 | } 111 | var mentorDiv = 112 | "
" + 113 | "
" + 114 | "" + 117 | "
" + 118 | "

" + 119 | mentor.name + 120 | "

" + 121 | "

" + 122 | mentor.about + 123 | "

" + 124 | "
" + 125 | "" + 136 | "
" + 137 | "
"; 138 | 139 | $("#mentors").append(mentorDiv); 140 | }); 141 | }); 142 | 143 | $.getJSON(participantsJson, function(data) { 144 | 145 | //variables for pagination 146 | let current_page = 1; 147 | var per_page = 12; 148 | var participants = []; 149 | all_participants = data.participants; 150 | 151 | // sort participants alphabetically 152 | all_participants.sort((p1, p2) => { 153 | if (p1.name.toLowerCase() < p2.name.toLowerCase()) { 154 | return -1; 155 | } 156 | if (p1.name.toLowerCase() > p2.name.toLowerCase()) { 157 | return 1; 158 | } 159 | }); 160 | 161 | // for first page 162 | if(current_page === 1){ 163 | let no_pages = numPages(); 164 | let shw_no_pages = []; 165 | for(let i = 1 ; i<=no_pages; i++){ 166 | var data = "
  • "+ 167 | ""+ 169 | i+ 170 | ""+ 171 | "
  • "; 172 | shw_no_pages.push(data); 173 | 174 | } 175 | 176 | $("#pagination").after(shw_no_pages); 177 | participants = all_participants.slice(current_page-1, (current_page-1)+per_page); 178 | loadpage(); 179 | } 180 | 181 | //this function count number of pages are required 182 | function numPages(){ 183 | let no_pages = Math.ceil(all_participants.length/per_page); 184 | return parseInt(no_pages); 185 | } 186 | 187 | //when click the next 188 | $('.next').bind("click",function(event){ 189 | if (current_page < numPages()) { 190 | current_page++; 191 | $(this).removeClass('disabled'); 192 | $('.prev').removeClass('disabled'); 193 | $("#participants").empty(); 194 | participants = all_participants.slice((current_page-1)*per_page, (current_page-1)*per_page+per_page); 195 | loadpage(); 196 | } 197 | }); 198 | 199 | //when click the previous 200 | $('.prev').bind("click",function(event){ 201 | if (current_page > 1) { 202 | current_page--; 203 | $('.prev').removeClass('disabled'); 204 | $(this).removeClass('disabled'); 205 | participants = all_participants.slice((current_page-1)*per_page, (current_page-1)*per_page+per_page); 206 | loadpage(); 207 | } 208 | }); 209 | 210 | //when click the page number 211 | $('.page-click').bind("click", function(event) { 212 | event.preventDefault(); 213 | $('.next').removeClass('disabled'); 214 | $('.prev').removeClass('disabled'); 215 | current_page = $(this).text(); 216 | current_page = parseInt(current_page); 217 | $("#participants").empty(); 218 | participants = all_participants.slice((current_page-1)*per_page, (current_page-1)*per_page+per_page); 219 | loadpage(); 220 | }); 221 | 222 | //this function load the data 223 | function loadpage(){ 224 | //show the active page 225 | let active_page = ".pagination-participants li:nth-child(" + (current_page+1) + ")"; 226 | $('.pagination-participants').find('.active').removeClass('active'); 227 | $(active_page).addClass('active'); 228 | 229 | //disable previous button when page number is 1 230 | if(current_page === 1){ 231 | $('.prev').addClass('disabled'); 232 | } 233 | 234 | //disable next button 235 | if(current_page === numPages()){ 236 | $('.next').addClass('disabled'); 237 | } 238 | 239 | $.each(participants, function(i, participant) { 240 | if ( 241 | /^ *$/.test(participant.imageurl) || 242 | participant.imageurl == "" 243 | ) { 244 | //regex to check empty string or spaces 245 | 246 | participant.imageurl = 247 | "https://image.flaticon.com/icons/svg/1141/1141771.svg"; 248 | //Icon made by Freepik from www.flaticon.com *credits* 249 | } else { 250 | var url = participant.imageurl; 251 | //console.log(url); 252 | 253 | try { 254 | var http = new XMLHttpRequest(); 255 | http.open("HEAD", url, false); 256 | http.send(); 257 | 258 | if (http.status == 404) { 259 | participant.imageurl = 260 | "https://image.flaticon.com/icons/svg/1141/1141771.svg"; 261 | } 262 | } catch (err) {} 263 | } 264 | 265 | // check if social media links available otherwise disable them 266 | 267 | if ( 268 | /^ *$/.test(participant.facebook) || 269 | participant.facebook == "" 270 | ) { 271 | //regex to check empty string or spaces 272 | participant.facebook = "javascript:void(0);"; 273 | 274 | } else { 275 | var url = participant.facebook; 276 | 277 | try { 278 | var http = new XMLHttpRequest(); 279 | http.open("HEAD", url, false); 280 | http.send(); 281 | 282 | if (http.status == 404) { 283 | participant.facebook = "javascript:void(0);"; 284 | } 285 | } catch (err) {} 286 | } 287 | 288 | if ( 289 | /^ *$/.test(participant.github) || 290 | participant.github == "" 291 | ) { 292 | //regex to check empty string or spaces 293 | participant.github = "javascript:void(0);"; 294 | 295 | } else { 296 | var url = participant.github; 297 | 298 | try { 299 | var http = new XMLHttpRequest(); 300 | http.open("HEAD", url, false); 301 | http.send(); 302 | 303 | if (http.status == 404) { 304 | participant.github = "javascript:void(0);"; 305 | } 306 | } catch (err) {} 307 | } 308 | 309 | if ( 310 | /^ *$/.test(participant.twitter) || 311 | participant.twitter == "" 312 | ) { 313 | //regex to check empty string or spaces 314 | participant.twitter = "javascript:void(0);"; 315 | 316 | } else { 317 | var url = participant.twitter; 318 | 319 | try { 320 | var http = new XMLHttpRequest(); 321 | http.open("HEAD", url, false); 322 | http.send(); 323 | 324 | if (http.status == 404) { 325 | participant.twitter = "javascript:void(0);"; 326 | } 327 | } catch (err) {} 328 | } 329 | var participantabout=participant.about; 330 | if(participantabout==="") 331 | participantabout="Talk is cheap. Show me the code"; 332 | var participantDiv = 333 | "
    " + 334 | "
    " + 335 | "
    " + 336 | "" + 339 | "
    " + 340 | "

    " + 341 | participant.name + 342 | "

    " + 343 | "

    " + 344 | participant.college + 345 | "

    " + 346 | "
    "+ 347 | "
    " + 348 | "
    " + 349 | "

    " + 350 | participantabout + 351 | "

    " + 352 | "" + 366 | "
    "; 367 | 368 | $("#participants").append(participantDiv); 369 | }); 370 | } 371 | }); 372 | 373 | $.getJSON(projectsJson, function(data) { 374 | //variables for pagination 375 | let current_page = 1; 376 | var per_page = 8; 377 | var projects = []; 378 | all_projects = data.projects; 379 | 380 | // for first page 381 | if(current_page === 1){ 382 | let no_pages = numPages(); 383 | let shw_no_pages = []; 384 | for(let i = 1 ; i<=no_pages; i++){ 385 | var data = "
  • "+ 386 | ""+ 388 | i+ 389 | ""+ 390 | "
  • "; 391 | shw_no_pages.push(data); 392 | 393 | } 394 | 395 | $("#pagination-project").after(shw_no_pages); 396 | projects = all_projects.slice(current_page-1, (current_page-1)+per_page); 397 | loadpage(); 398 | } 399 | 400 | //this function count number of pages are required 401 | function numPages(){ 402 | let no_pages = Math.ceil(all_projects.length/per_page); 403 | return parseInt(no_pages); 404 | } 405 | 406 | //when click the next 407 | $('.next-project').bind("click",function(event){ 408 | if (current_page < numPages()) { 409 | current_page++; 410 | $(this).removeClass('disabled'); 411 | $('.prev-project').removeClass('disabled'); 412 | $("#projects").empty(); 413 | projects = all_projects.slice((current_page-1)*per_page, (current_page-1)*per_page+per_page); 414 | loadpage(); 415 | } 416 | }); 417 | 418 | //when click the previous 419 | $('.prev-project').bind("click",function(event){ 420 | if (current_page > 1) { 421 | current_page--; 422 | $(this).removeClass('disabled'); 423 | $('.next-project').removeClass('disabled'); 424 | $("#projects").empty(); 425 | projects = all_projects.slice((current_page-1)*per_page, (current_page-1)*per_page+per_page); 426 | loadpage(); 427 | } 428 | }); 429 | 430 | //when click the page number 431 | $('.project-page-click').bind("click", function(event) { 432 | event.preventDefault(); 433 | $('.next-project').removeClass('disabled'); 434 | $('.prev-project').removeClass('disabled'); 435 | current_page = $(this).text(); 436 | current_page = parseInt(current_page); 437 | $("#projects").empty(); 438 | projects = all_projects.slice((current_page-1)*per_page, (current_page-1)*per_page+per_page); 439 | loadpage(); 440 | }); 441 | 442 | //this function load the data 443 | function loadpage(){ 444 | //show the active page 445 | let active_page = ".pagination-project li:nth-child(" + (current_page+1) + ")"; 446 | $('.pagination-project').find('.active').removeClass('active'); 447 | $(active_page).addClass('active'); 448 | 449 | //disable previous button when page number is 1 450 | if(current_page === 1){ 451 | $('.prev-project').addClass('disabled'); 452 | } 453 | 454 | //disable next button 455 | if(current_page === numPages()){ 456 | $('.next-project').addClass('disabled'); 457 | } 458 | $.each(projects, function(i, project) { 459 | var projectDiv = 460 | "
    " + 461 | "
    " + 462 | "
    " + 463 | "" + 468 | "
    " + 469 | "

    " + 470 | "" + 473 | project.name + 474 | "" + 475 | "

    " + 476 | "
    "+ 477 | "
    "+ 478 | "
    " + 479 | "

    " + 480 | project.about + 481 | "

    " + 482 | ""+ 496 | "
    "+ 497 | "
    "; 498 | 499 | $("#projects").append(projectDiv); 500 | }); 501 | } 502 | }); 503 | 504 | 505 | // games 506 | $.getJSON(gamesJson, function(data) { 507 | games = data.games; 508 | 509 | $.each(games, function(i, game) { 510 | 511 | var gameDiv = 512 | "
    " + 513 | "
    " + 514 | "" + 517 | "
    " + 518 | "

    " + 519 | game.gamename + 520 | "

    " + 521 | "

    by " + 522 | game.developer + 523 | "

    " + 524 | "
    " + 525 | "" + 530 | "
    " + 531 | "
    "; 532 | 533 | $("#games").append(gameDiv); 534 | }); 535 | }); 536 | 537 | 538 | //smooth scrolling 539 | $('a[href^="#"]').on('click', function (e) { 540 | e.preventDefault(); 541 | 542 | var target = this.hash; 543 | var $target = $(target); 544 | 545 | $('html, body').animate({ 546 | 'scrollTop': $target.offset().top 547 | }, 500, 'swing'); 548 | }); 549 | 550 | }); 551 | 552 | 553 | 554 | // landing page animation 555 | $(function(){ 556 | setTimeout(function() { 557 | $('.a-landing-sub-text').show().addClass('animated-3s slideInUp'); 558 | }, 500); 559 | 560 | setTimeout(function() { 561 | $('.a-nav').show().addClass('animated-2s bounceInDown'); 562 | }, 500); 563 | 564 | setTimeout(function() { 565 | $('.a-btn').show().addClass('animated-2s bounceInUp'); 566 | }, 500); 567 | 568 | }); 569 | 570 | // dark mode 571 | $(document).ready(function(){ 572 | $('.slider').click(function(){ 573 | $('body').toggleClass('dark') 574 | $('.jumbotron').toggleClass('dark-bg-img') 575 | $('.dark-scrl-btn').toggleClass('dark') 576 | $('nav,div,footer').toggleClass('dark') 577 | $('.countdownContainer,.info,.labels,.values,.labellings').toggleClass('dark',false) 578 | $('.countdownContainer,.info,.labels,.values,.labellings').toggleClass('nightcountdown') 579 | $('h2,h3,h5').toggleClass('dark') 580 | $('span,img,ul,li').toggleClass('dark') 581 | $('h1,h4,a').toggleClass('dark-landing-text') 582 | $('footer').toggleClass('night-footer') 583 | $('.footer_media').toggleClass('footer-dark') 584 | $('.fab-night').toggleClass('footer-dark') 585 | $('.night-footer-ref').toggleClass('footer-dark') 586 | }) 587 | }) 588 | 589 | //fork and star 590 | var jsonData = {}; 591 | $.ajax({ 592 | url: "https://api.github.com/search/repositories?q=Opencode-Collaborative-19", 593 | type: 'GET', 594 | processData: false, 595 | success: function (data) { 596 | jsonData = JSON.stringify(data); 597 | jsonData = JSON.parse(jsonData) 598 | forks_count = jsonData.items[0].forks_count 599 | star_count = jsonData.items[0].stargazers_count 600 | var fork = "

    "+forks_count+"

    "; 601 | var star = "

    "+star_count+"

    "; 602 | $("#fork").after(fork); 603 | $("#star").after(star); 604 | }, 605 | error: function(){ 606 | console.log("Cannot get data"); 607 | } 608 | }); 609 | 610 | // typing animation 611 | $(function(){ 612 | setTimeout(function() { 613 | $('.typing-anim-ref').show().addClass('typing-anim'); 614 | $('.ribbn-ref').show().addClass('github-fork-ribbon'); 615 | }, 500); 616 | 617 | }); 618 | 619 | 620 | // list all issues 621 | 622 | /*------first repo-----*/ 623 | function openNav1() { 624 | document.getElementById("myNav1").style.width = "100%"; 625 | } 626 | /* Close when someone clicks on the "x" symbol inside the overlay */ 627 | function closeNav1() { 628 | document.getElementById("myNav1").style.width = "0%"; 629 | } 630 | // copy paste the same for all repo's 631 | 632 | 633 | function openNav2() { 634 | document.getElementById("myNav2").style.width = "100%"; 635 | } 636 | function closeNav2() { 637 | document.getElementById("myNav2").style.width = "0%"; 638 | } 639 | 640 | 641 | function openNav3() { 642 | document.getElementById("myNav3").style.width = "100%"; 643 | } 644 | function closeNav3() { 645 | document.getElementById("myNav3").style.width = "0%"; 646 | } 647 | 648 | 649 | function openNav4() { 650 | document.getElementById("myNav4").style.width = "100%"; 651 | } 652 | function closeNav4() { 653 | document.getElementById("myNav4").style.width = "0%"; 654 | } 655 | 656 | 657 | function openNav5() { 658 | document.getElementById("myNav5").style.width = "100%"; 659 | } 660 | function closeNav5() { 661 | document.getElementById("myNav5").style.width = "0%"; 662 | } 663 | 664 | 665 | function openNav6() { 666 | document.getElementById("myNav6").style.width = "100%"; 667 | } 668 | function closeNav6() { 669 | document.getElementById("myNav6").style.width = "0%"; 670 | } 671 | 672 | 673 | function openNav7() { 674 | document.getElementById("myNav7").style.width = "100%"; 675 | } 676 | function closeNav7() { 677 | document.getElementById("myNav7").style.width = "0%"; 678 | } 679 | 680 | 681 | function openNav8() { 682 | document.getElementById("myNav8").style.width = "100%"; 683 | } 684 | function closeNav8() { 685 | document.getElementById("myNav8").style.width = "0%"; 686 | } 687 | 688 | function openNav9() { 689 | document.getElementById("myNav9").style.width = "100%"; 690 | } 691 | function closeNav9() { 692 | document.getElementById("myNav9").style.width = "0%"; 693 | } 694 | 695 | function openNav10() { 696 | document.getElementById("myNav10").style.width = "100%"; 697 | } 698 | function closeNav10() { 699 | document.getElementById("myNav10").style.width = "0%"; 700 | } 701 | 702 | function openNav11() { 703 | document.getElementById("myNav11").style.width = "100%"; 704 | } 705 | function closeNav11() { 706 | document.getElementById("myNav11").style.width = "0%"; 707 | } 708 | 709 | function openNav12() { 710 | document.getElementById("myNav12").style.width = "100%"; 711 | } 712 | function closeNav12() { 713 | document.getElementById("myNav12").style.width = "0%"; 714 | } 715 | 716 | function openNav13() { 717 | document.getElementById("myNav13").style.width = "100%"; 718 | } 719 | function closeNav13() { 720 | document.getElementById("myNav13").style.width = "0%"; 721 | } 722 | 723 | 724 | function openNav14() { 725 | document.getElementById("myNav14").style.width = "100%"; 726 | } 727 | function closeNav14() { 728 | document.getElementById("myNav14").style.width = "0%"; 729 | } 730 | 731 | 732 | function openNav15() { 733 | document.getElementById("myNav15").style.width = "100%"; 734 | } 735 | function closeNav15() { 736 | document.getElementById("myNav15").style.width = "0%"; 737 | } 738 | 739 | 740 | function openNav16() { 741 | document.getElementById("myNav16").style.width = "100%"; 742 | } 743 | function closeNav16() { 744 | document.getElementById("myNav16").style.width = "0%"; 745 | } 746 | 747 | 748 | function openNav17() { 749 | document.getElementById("myNav17").style.width = "100%"; 750 | } 751 | function closeNav17() { 752 | document.getElementById("myNav17").style.width = "0%"; 753 | } 754 | 755 | 756 | function openNav18() { 757 | document.getElementById("myNav18").style.width = "100%"; 758 | } 759 | function closeNav18() { 760 | document.getElementById("myNav18").style.width = "0%"; 761 | } 762 | 763 | 764 | function openNav19() { 765 | document.getElementById("myNav19").style.width = "100%"; 766 | } 767 | function closeNav19() { 768 | document.getElementById("myNav19").style.width = "0%"; 769 | } 770 | 771 | 772 | function openNav20() { 773 | document.getElementById("myNav20").style.width = "100%"; 774 | } 775 | function closeNav20() { 776 | document.getElementById("myNav20").style.width = "0%"; 777 | } 778 | 779 | 780 | function openNav21() { 781 | document.getElementById("myNav21").style.width = "100%"; 782 | } 783 | function closeNav21() { 784 | document.getElementById("myNav21").style.width = "0%"; 785 | } 786 | 787 | 788 | function openNav22() { 789 | document.getElementById("myNav22").style.width = "100%"; 790 | } 791 | function closeNav22() { 792 | document.getElementById("myNav22").style.width = "0%"; 793 | } 794 | 795 | 796 | function openNav23() { 797 | document.getElementById("myNav23").style.width = "100%"; 798 | } 799 | function closeNav23() { 800 | document.getElementById("myNav23").style.width = "0%"; 801 | } 802 | 803 | 804 | function openNav24() { 805 | document.getElementById("myNav24").style.width = "100%"; 806 | } 807 | function closeNav24() { 808 | document.getElementById("myNav24").style.width = "0%"; 809 | } 810 | 811 | 812 | function openNav25() { 813 | document.getElementById("myNav25").style.width = "100%"; 814 | } 815 | function closeNav25() { 816 | document.getElementById("myNav25").style.width = "0%"; 817 | } 818 | 819 | 820 | function openNav26() { 821 | document.getElementById("myNav26").style.width = "100%"; 822 | } 823 | function closeNav26() { 824 | document.getElementById("myNav26").style.width = "0%"; 825 | } 826 | 827 | 828 | $(document).ready(function () { 829 | $('#opencodeiiita-HackerSkills-load-more button').click(); 830 | $('#opencodeiiita-Opencode-Collaborative-19-load-more button').click(); 831 | $('#opencodeiiita-ToDo-List-App-load-more button').click(); 832 | $('#opencodeiiita-CodeFemme-load-more button').click(); 833 | $('#opencodeiiita-Competitive_Coding-load-more button').click(); 834 | $('#opencodeiiita-Machine-Learning-load-more button').click(); 835 | $('#opencodeiiita-sassy-css-load-more button').click(); 836 | $('#opencodeiiita-outpassfinal-load-more button').click(); 837 | $('#opencodeiiita-opencodeiiita.github.io-load-more button').click(); 838 | $('#opencodeiiita-Road-CS-load-more button').click(); 839 | $('#opencodeiiita-opencodebot-load-more button').click(); 840 | $('#opencodeiiita-sociofolio-backend-load-more button').click(); 841 | $('#opencodeiiita-sociofolio-frontend-load-more button').click(); 842 | $('#opencodeiiita-opencode-leaderboard-load-more button').click(); 843 | $('#opencodeiiita-Technical-Writing-load-more button').click(); 844 | $('#debck-Technical-Writing-load-more button').click(); 845 | $('#jogendra-HealthLedger-load-more button').click(); 846 | $('#OrionStar25-Selena-Gomez-Discography-load-more button').click(); 847 | $('#Cynthesize-frontend-load-more button').click(); 848 | $('#yash-agarwal17-ComputerVision-load-more button').click(); 849 | $('#Jigar3-Wall-Street-load-more button').click(); 850 | $('#stealthanthrax-kasper_music_player-load-more button').click(); 851 | $('#kaustubhhiware-rose-more button').click(); 852 | $('#kaustubhhiware-facebook-archive-more button').click(); 853 | $('#PaytmBuildForIndia-ResearchFLO-load-more button').click(); 854 | $('#GeekHaven-Leave-Application-Portal-load-more button').click(); 855 | }); 856 | -------------------------------------------------------------------------------- /vendor/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Grid v4.0.0-beta.2 (https://getbootstrap.com) 3 | * Copyright 2011-2017 The Bootstrap Authors 4 | * Copyright 2011-2017 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 6 | */@-ms-viewport{width:device-width}html{box-sizing:border-box;-ms-overflow-style:scrollbar}*,::after,::before{box-sizing:inherit}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}} 7 | /*# sourceMappingURL=bootstrap-grid.min.css.map */ -------------------------------------------------------------------------------- /vendor/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Reboot v4.0.0-beta.2 (https://getbootstrap.com) 3 | * Copyright 2011-2017 The Bootstrap Authors 4 | * Copyright 2011-2017 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 6 | * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) 7 | */ 8 | *, 9 | *::before, 10 | *::after { 11 | box-sizing: border-box; 12 | } 13 | 14 | html { 15 | font-family: sans-serif; 16 | line-height: 1.15; 17 | -webkit-text-size-adjust: 100%; 18 | -ms-text-size-adjust: 100%; 19 | -ms-overflow-style: scrollbar; 20 | -webkit-tap-highlight-color: transparent; 21 | } 22 | 23 | @-ms-viewport { 24 | width: device-width; 25 | } 26 | 27 | article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section { 28 | display: block; 29 | } 30 | 31 | body { 32 | margin: 0; 33 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; 34 | font-size: 1rem; 35 | font-weight: 400; 36 | line-height: 1.5; 37 | color: #212529; 38 | text-align: left; 39 | background-color: #fff; 40 | } 41 | 42 | [tabindex="-1"]:focus { 43 | outline: none !important; 44 | } 45 | 46 | hr { 47 | box-sizing: content-box; 48 | height: 0; 49 | overflow: visible; 50 | } 51 | 52 | h1, h2, h3, h4, h5, h6 { 53 | margin-top: 0; 54 | margin-bottom: 0.5rem; 55 | } 56 | 57 | p { 58 | margin-top: 0; 59 | margin-bottom: 1rem; 60 | } 61 | 62 | abbr[title], 63 | abbr[data-original-title] { 64 | text-decoration: underline; 65 | -webkit-text-decoration: underline dotted; 66 | text-decoration: underline dotted; 67 | cursor: help; 68 | border-bottom: 0; 69 | } 70 | 71 | address { 72 | margin-bottom: 1rem; 73 | font-style: normal; 74 | line-height: inherit; 75 | } 76 | 77 | ol, 78 | ul, 79 | dl { 80 | margin-top: 0; 81 | margin-bottom: 1rem; 82 | } 83 | 84 | ol ol, 85 | ul ul, 86 | ol ul, 87 | ul ol { 88 | margin-bottom: 0; 89 | } 90 | 91 | dt { 92 | font-weight: 700; 93 | } 94 | 95 | dd { 96 | margin-bottom: .5rem; 97 | margin-left: 0; 98 | } 99 | 100 | blockquote { 101 | margin: 0 0 1rem; 102 | } 103 | 104 | dfn { 105 | font-style: italic; 106 | } 107 | 108 | b, 109 | strong { 110 | font-weight: bolder; 111 | } 112 | 113 | small { 114 | font-size: 80%; 115 | } 116 | 117 | sub, 118 | sup { 119 | position: relative; 120 | font-size: 75%; 121 | line-height: 0; 122 | vertical-align: baseline; 123 | } 124 | 125 | sub { 126 | bottom: -.25em; 127 | } 128 | 129 | sup { 130 | top: -.5em; 131 | } 132 | 133 | a { 134 | color: #007bff; 135 | text-decoration: none; 136 | background-color: transparent; 137 | -webkit-text-decoration-skip: objects; 138 | } 139 | 140 | a:hover { 141 | color: #0056b3; 142 | text-decoration: underline; 143 | } 144 | 145 | a:not([href]):not([tabindex]) { 146 | color: inherit; 147 | text-decoration: none; 148 | } 149 | 150 | a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover { 151 | color: inherit; 152 | text-decoration: none; 153 | } 154 | 155 | a:not([href]):not([tabindex]):focus { 156 | outline: 0; 157 | } 158 | 159 | pre, 160 | code, 161 | kbd, 162 | samp { 163 | font-family: monospace, monospace; 164 | font-size: 1em; 165 | } 166 | 167 | pre { 168 | margin-top: 0; 169 | margin-bottom: 1rem; 170 | overflow: auto; 171 | -ms-overflow-style: scrollbar; 172 | } 173 | 174 | figure { 175 | margin: 0 0 1rem; 176 | } 177 | 178 | img { 179 | vertical-align: middle; 180 | border-style: none; 181 | } 182 | 183 | svg:not(:root) { 184 | overflow: hidden; 185 | } 186 | 187 | a, 188 | area, 189 | button, 190 | [role="button"], 191 | input:not([type="range"]), 192 | label, 193 | select, 194 | summary, 195 | textarea { 196 | -ms-touch-action: manipulation; 197 | touch-action: manipulation; 198 | } 199 | 200 | table { 201 | border-collapse: collapse; 202 | } 203 | 204 | caption { 205 | padding-top: 0.75rem; 206 | padding-bottom: 0.75rem; 207 | color: #868e96; 208 | text-align: left; 209 | caption-side: bottom; 210 | } 211 | 212 | th { 213 | text-align: inherit; 214 | } 215 | 216 | label { 217 | display: inline-block; 218 | margin-bottom: .5rem; 219 | } 220 | 221 | button { 222 | border-radius: 0; 223 | } 224 | 225 | button:focus { 226 | outline: 1px dotted; 227 | outline: 5px auto -webkit-focus-ring-color; 228 | } 229 | 230 | input, 231 | button, 232 | select, 233 | optgroup, 234 | textarea { 235 | margin: 0; 236 | font-family: inherit; 237 | font-size: inherit; 238 | line-height: inherit; 239 | } 240 | 241 | button, 242 | input { 243 | overflow: visible; 244 | } 245 | 246 | button, 247 | select { 248 | text-transform: none; 249 | } 250 | 251 | button, 252 | html [type="button"], 253 | [type="reset"], 254 | [type="submit"] { 255 | -webkit-appearance: button; 256 | } 257 | 258 | button::-moz-focus-inner, 259 | [type="button"]::-moz-focus-inner, 260 | [type="reset"]::-moz-focus-inner, 261 | [type="submit"]::-moz-focus-inner { 262 | padding: 0; 263 | border-style: none; 264 | } 265 | 266 | input[type="radio"], 267 | input[type="checkbox"] { 268 | box-sizing: border-box; 269 | padding: 0; 270 | } 271 | 272 | input[type="date"], 273 | input[type="time"], 274 | input[type="datetime-local"], 275 | input[type="month"] { 276 | -webkit-appearance: listbox; 277 | } 278 | 279 | textarea { 280 | overflow: auto; 281 | resize: vertical; 282 | } 283 | 284 | fieldset { 285 | min-width: 0; 286 | padding: 0; 287 | margin: 0; 288 | border: 0; 289 | } 290 | 291 | legend { 292 | display: block; 293 | width: 100%; 294 | max-width: 100%; 295 | padding: 0; 296 | margin-bottom: .5rem; 297 | font-size: 1.5rem; 298 | line-height: inherit; 299 | color: inherit; 300 | white-space: normal; 301 | } 302 | 303 | progress { 304 | vertical-align: baseline; 305 | } 306 | 307 | [type="number"]::-webkit-inner-spin-button, 308 | [type="number"]::-webkit-outer-spin-button { 309 | height: auto; 310 | } 311 | 312 | [type="search"] { 313 | outline-offset: -2px; 314 | -webkit-appearance: none; 315 | } 316 | 317 | [type="search"]::-webkit-search-cancel-button, 318 | [type="search"]::-webkit-search-decoration { 319 | -webkit-appearance: none; 320 | } 321 | 322 | ::-webkit-file-upload-button { 323 | font: inherit; 324 | -webkit-appearance: button; 325 | } 326 | 327 | output { 328 | display: inline-block; 329 | } 330 | 331 | summary { 332 | display: list-item; 333 | } 334 | 335 | template { 336 | display: none; 337 | } 338 | 339 | [hidden] { 340 | display: none !important; 341 | } 342 | /*# sourceMappingURL=bootstrap-reboot.css.map */ -------------------------------------------------------------------------------- /vendor/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Reboot v4.0.0-beta.2 (https://getbootstrap.com) 3 | * Copyright 2011-2017 The Bootstrap Authors 4 | * Copyright 2011-2017 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 6 | * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) 7 | */*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}@-ms-viewport{width:device-width}article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg:not(:root){overflow:hidden}[role=button],a,area,button,input:not([type=range]),label,select,summary,textarea{-ms-touch-action:manipulation;touch-action:manipulation}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#868e96;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item}template{display:none}[hidden]{display:none!important} 8 | /*# sourceMappingURL=bootstrap-reboot.min.css.map */ --------------------------------------------------------------------------------