├── 404.html ├── 404.md ├── LICENSE ├── README.md ├── assets ├── fonts │ ├── CircularStd-Bold.eot │ ├── CircularStd-Bold.otf │ ├── CircularStd-Bold.svg │ ├── CircularStd-Bold.ttf │ └── CircularStd-Bold.woff ├── img │ ├── apple-touch-icon-114x114.png │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-144x144.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-57x57.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-72x72.png │ ├── apple-touch-icon-76x76.png │ ├── chrome-mobile.PNG │ ├── code.txt │ ├── contact.svg │ ├── favicon-128.png │ ├── favicon-16x16.png │ ├── favicon-196x196.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── favicon.png │ ├── footer-yo.png │ ├── landscape.png │ ├── logo.PNG │ ├── logo.jpg │ ├── logo2.png │ ├── mobile.jpg │ ├── mobile.png │ ├── mobile_orignal.jpg.uncompressed │ ├── profile.jfif │ ├── undraw_code_review_l1q9 (1).svg │ ├── undraw_code_review_l1q9.svg │ └── work │ │ ├── basketball │ │ └── hero.png │ │ ├── calculator │ │ ├── hero-large.png │ │ └── hero.png │ │ ├── dictionary │ │ ├── hero-large.png │ │ └── hero.png │ │ ├── food │ │ ├── hero-large.png │ │ └── hero.png │ │ ├── foodfuel │ │ ├── food-bar.png │ │ └── food.png │ │ ├── hotspoter │ │ ├── cnet.png │ │ ├── device.png │ │ ├── hero1.png │ │ ├── hotspoter-hero.png │ │ ├── hotspoter.png │ │ ├── rest-tablet.jpg │ │ └── softonic.png │ │ ├── ishandeveloper │ │ └── hero.png │ │ ├── mehak │ │ ├── hero.png │ │ └── mehak-tablet.png │ │ ├── news │ │ ├── hero-large.png │ │ └── hero.png │ │ ├── pokemon │ │ ├── hero-large.png │ │ └── hero.png │ │ ├── ppt │ │ ├── 1.png │ │ └── 2.png │ │ ├── qr │ │ ├── hero-large.png │ │ └── hero.png │ │ ├── timestamp │ │ └── hero.png │ │ ├── todo │ │ └── hero.png │ │ └── url │ │ ├── hero.PNG │ │ ├── url-bar.png │ │ └── url-tablet.png └── js │ ├── app.js │ └── sw.js ├── contact.html ├── index.html ├── legal.html ├── manifest.json ├── screenshots ├── 1-mobile.png ├── 1.png ├── 3-mobile.png └── 3.png ├── style.css ├── sw.js └── work.html /404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 404 | Ishan Sharma 7 | 8 | 9 | 10 | 11 |
12 |

Oops, 404 Error!

13 |

Return to Homepage

14 |
15 | 16 | -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- 1 | --- 2 | permalink: /404.html 3 | --- -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![HitCount](http://hits.dwyl.com/ishandeveloper/Portfolio.svg)](http://hits.dwyl.com/ishandeveloper/Portfolio) 2 | ## Portfolio [Progressive Web App] 3 | #### A clean, beautiful and fully responsive progressive web app based portfolio template for Developers! 4 | ##### Optimized For Github Pages 5 | 6 | 7 | 8 |
P.S. This project is still in development phase.
9 |
VIEW LIVE DEMO
10 | 11 | ### TECHNOLOGIES USED 12 | * HTML5 13 | * CSS 14 | * JAVASCRIPT 15 | * BOOTSTRAP 16 | * FONT AWESOME 5 17 | 18 | ##### [Desktop] 19 |      20 | ##### [Mobile] 21 |      22 | 23 | ### Just a sidenote ✉ 24 | I value keeping this site open source, but as you all know, plagiarism is bad. I spent a non-negligible amount of effort developing, designing, and trying to perfect this iteration of my website, and I am proud of it! All I ask is to not claim this effort as your own. 25 | 26 | So, feel free to fork this repo. If you do, please just give me proper credit by linking back to my website. 27 | 28 | ##### Made with ❤ by ishandeveloper 29 | 30 | [![forthebadge](https://forthebadge.com/images/badges/built-with-love.svg)](https://github.com/ishandeveloper) 31 | -------------------------------------------------------------------------------- /assets/fonts/CircularStd-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/fonts/CircularStd-Bold.eot -------------------------------------------------------------------------------- /assets/fonts/CircularStd-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/fonts/CircularStd-Bold.otf -------------------------------------------------------------------------------- /assets/fonts/CircularStd-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/fonts/CircularStd-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/CircularStd-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/fonts/CircularStd-Bold.woff -------------------------------------------------------------------------------- /assets/img/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /assets/img/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /assets/img/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /assets/img/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /assets/img/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /assets/img/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /assets/img/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /assets/img/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /assets/img/chrome-mobile.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/chrome-mobile.PNG -------------------------------------------------------------------------------- /assets/img/code.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /assets/img/contact.svg: -------------------------------------------------------------------------------- 1 | Specs -------------------------------------------------------------------------------- /assets/img/favicon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/favicon-128.png -------------------------------------------------------------------------------- /assets/img/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/favicon-16x16.png -------------------------------------------------------------------------------- /assets/img/favicon-196x196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/favicon-196x196.png -------------------------------------------------------------------------------- /assets/img/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/favicon-32x32.png -------------------------------------------------------------------------------- /assets/img/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/favicon-96x96.png -------------------------------------------------------------------------------- /assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/favicon.png -------------------------------------------------------------------------------- /assets/img/footer-yo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/footer-yo.png -------------------------------------------------------------------------------- /assets/img/landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/landscape.png -------------------------------------------------------------------------------- /assets/img/logo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/logo.PNG -------------------------------------------------------------------------------- /assets/img/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/logo.jpg -------------------------------------------------------------------------------- /assets/img/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/logo2.png -------------------------------------------------------------------------------- /assets/img/mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/mobile.jpg -------------------------------------------------------------------------------- /assets/img/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/mobile.png -------------------------------------------------------------------------------- /assets/img/mobile_orignal.jpg.uncompressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/mobile_orignal.jpg.uncompressed -------------------------------------------------------------------------------- /assets/img/profile.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/profile.jfif -------------------------------------------------------------------------------- /assets/img/undraw_code_review_l1q9 (1).svg: -------------------------------------------------------------------------------- 1 | code review -------------------------------------------------------------------------------- /assets/img/undraw_code_review_l1q9.svg: -------------------------------------------------------------------------------- 1 | code review -------------------------------------------------------------------------------- /assets/img/work/basketball/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/basketball/hero.png -------------------------------------------------------------------------------- /assets/img/work/calculator/hero-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/calculator/hero-large.png -------------------------------------------------------------------------------- /assets/img/work/calculator/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/calculator/hero.png -------------------------------------------------------------------------------- /assets/img/work/dictionary/hero-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/dictionary/hero-large.png -------------------------------------------------------------------------------- /assets/img/work/dictionary/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/dictionary/hero.png -------------------------------------------------------------------------------- /assets/img/work/food/hero-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/food/hero-large.png -------------------------------------------------------------------------------- /assets/img/work/food/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/food/hero.png -------------------------------------------------------------------------------- /assets/img/work/foodfuel/food-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/foodfuel/food-bar.png -------------------------------------------------------------------------------- /assets/img/work/foodfuel/food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/foodfuel/food.png -------------------------------------------------------------------------------- /assets/img/work/hotspoter/cnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/hotspoter/cnet.png -------------------------------------------------------------------------------- /assets/img/work/hotspoter/device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/hotspoter/device.png -------------------------------------------------------------------------------- /assets/img/work/hotspoter/hero1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/hotspoter/hero1.png -------------------------------------------------------------------------------- /assets/img/work/hotspoter/hotspoter-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/hotspoter/hotspoter-hero.png -------------------------------------------------------------------------------- /assets/img/work/hotspoter/hotspoter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/hotspoter/hotspoter.png -------------------------------------------------------------------------------- /assets/img/work/hotspoter/rest-tablet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/hotspoter/rest-tablet.jpg -------------------------------------------------------------------------------- /assets/img/work/hotspoter/softonic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/hotspoter/softonic.png -------------------------------------------------------------------------------- /assets/img/work/ishandeveloper/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/ishandeveloper/hero.png -------------------------------------------------------------------------------- /assets/img/work/mehak/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/mehak/hero.png -------------------------------------------------------------------------------- /assets/img/work/mehak/mehak-tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/mehak/mehak-tablet.png -------------------------------------------------------------------------------- /assets/img/work/news/hero-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/news/hero-large.png -------------------------------------------------------------------------------- /assets/img/work/news/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/news/hero.png -------------------------------------------------------------------------------- /assets/img/work/pokemon/hero-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/pokemon/hero-large.png -------------------------------------------------------------------------------- /assets/img/work/pokemon/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/pokemon/hero.png -------------------------------------------------------------------------------- /assets/img/work/ppt/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/ppt/1.png -------------------------------------------------------------------------------- /assets/img/work/ppt/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/ppt/2.png -------------------------------------------------------------------------------- /assets/img/work/qr/hero-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/qr/hero-large.png -------------------------------------------------------------------------------- /assets/img/work/qr/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/qr/hero.png -------------------------------------------------------------------------------- /assets/img/work/timestamp/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/timestamp/hero.png -------------------------------------------------------------------------------- /assets/img/work/todo/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/todo/hero.png -------------------------------------------------------------------------------- /assets/img/work/url/hero.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/url/hero.PNG -------------------------------------------------------------------------------- /assets/img/work/url/url-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/url/url-bar.png -------------------------------------------------------------------------------- /assets/img/work/url/url-tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/assets/img/work/url/url-tablet.png -------------------------------------------------------------------------------- /assets/js/app.js: -------------------------------------------------------------------------------- 1 | if('serviceWorker' in navigator){ 2 | navigator.serviceWorker.register('/Portfolio/sw.js') 3 | .then(reg => console.log('service worker registered')) 4 | .catch(err => console.log('service worker not registered', err)); 5 | } -------------------------------------------------------------------------------- /assets/js/sw.js: -------------------------------------------------------------------------------- 1 | const staticCacheName = 'site-static-v1'; 2 | const assets = [ 3 | '/Portfolio/', 4 | '/Portfolio/index.html', 5 | '/Portfolio/contact.html', 6 | '/Portfolio/legal.html', 7 | '/Portfolio/work.html', 8 | '/Portfolio/404.html', 9 | '/style.css', 10 | '/Portfolio/assets/img/mobile.png', 11 | '/Portfolio/assets/img/favicon.png', 12 | 'https://fonts.googleapis.com/css?family=Lato:300,400,700' 13 | ]; 14 | // install event 15 | self.addEventListener('install', evt => { 16 | evt.waitUntil( 17 | caches.open(staticCacheName).then((cache) => { 18 | console.log('caching shell assets'); 19 | cache.addAll(assets); 20 | }) 21 | ); 22 | }); 23 | // activate event 24 | self.addEventListener('activate', evt => { 25 | evt.waitUntil( 26 | caches.keys().then(keys => { 27 | return Promise.all(keys 28 | .filter(key => key !== staticCacheName) 29 | .map(key => caches.delete(key)) 30 | ); 31 | }) 32 | ); 33 | }); 34 | // When we change the name we could have multiple cache, to avoid that we need to delet the old cache, so with this function we check the key that is our cache naming, if it is different from the actual naming we delete it, in this way we will always have only the last updated cache. 35 | // fetch event 36 | self.addEventListener('fetch', evt => { 37 | evt.respondWith( 38 | caches.match(evt.request).then(cacheRes => { 39 | return cacheRes || fetch(evt.request); 40 | }) 41 | ); 42 | }); -------------------------------------------------------------------------------- /contact.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 23 | 25 | Contact | Ishan Sharma 26 | 27 | 28 | 29 | 30 |
31 | 47 |
48 |
49 |

Let's Get In Touch.

50 |

Want to discuss a project, an idea, an 51 | opportunity? Just fill up this 52 | form or write me an email 54 |

55 |
57 |
59 |
61 |
63 | 66 | 72 |
73 |
74 | 75 | 76 |
77 | 78 |
79 | 80 |
81 | 82 |
83 | 96 |
97 | 116 | 117 | 118 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 30 | 32 | Ishan Sharma 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 |
43 | 59 |
60 |
61 |

63 |  

64 |

I make elegantly professional web apps and flutter apps for a living 65 | and also design user experiences. 66 | If you want me to do any one of these for you, get in touch with me here. 67 |

68 | 69 | 72 | 75 | 83 |
84 | 85 |
86 | 87 |
88 | 89 |
90 |
91 | 110 | 113 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /legal.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 23 | 25 | Legal | Ishan Sharma 26 | 27 | 28 | 29 | 30 |
31 | 47 |
48 |
49 |

50 | 58 | 59 |
60 |

Privacy Policy

61 |

This privacy policy governs your access to and use of ishandeveloper.com, including any content, 62 | functionality and services offered on or through ishandeveloper.com (the “Website”).

63 | 64 |

1. What information I collect about you and why?

65 | 74 | 75 |

2. Cookies

76 | 81 | 82 |

3. Third party use of cookies

83 | 88 | 89 |

4. How long do I keep your data?

90 | 95 |
96 | 97 |
98 | 99 | 100 |
101 | 114 |
115 | 134 | 135 | 136 | -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ishan Sharma | ishandeveloper", 3 | "short_name": "Ishan Sharma", 4 | "start_url": "/Portfolio/index.html", 5 | "display": "standalone", 6 | "background_color": "#FFFFFF", 7 | "theme_color": "#FFFFFF", 8 | "orientation": "portrait-primary", 9 | "icons": [ 10 | { 11 | "src": "/Portfolio/assets/img/apple-touch-icon-72x72.png", 12 | "type": "image/png", 13 | "sizes": "72x72" 14 | }, 15 | { 16 | "src": "/Portfolio/assets/img/favicon-96x96.png", 17 | "type": "image/png", 18 | "sizes": "96x96" 19 | }, 20 | { 21 | "src": "/Portfolio/assets/img/favicon-128.png", 22 | "type": "image/png", 23 | "sizes": "128x128" 24 | }, 25 | { 26 | "src": "/Portfolio/assets/img/apple-touch-icon-144x144.png", 27 | "type": "image/png", 28 | "sizes": "144x144" 29 | }, 30 | { 31 | "src": "/Portfolio/assets/img/apple-touch-icon-152x152.png", 32 | "type": "image/png", 33 | "sizes": "152x152" 34 | }, 35 | { 36 | "src": "/Portfolio/assets/img/favicon-196x196.png", 37 | "type": "image/png", 38 | "sizes": "196x196" 39 | } 40 | ] 41 | } 42 | -------------------------------------------------------------------------------- /screenshots/1-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/screenshots/1-mobile.png -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/3-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/screenshots/3-mobile.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishandeveloper/Portfolio/df19bc0d81454f9451be0f0de18a647163384fd7/screenshots/3.png -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css?family=Poppins&display=swap'); 2 | 3 | @font-face { 4 | font-family: CircularStd; 5 | src: url(assets/fonts/CircularStd-Bold.eot); 6 | src: url("assets/fonts/CircularStd-Bold.eot?#iefix") format("embedded-opentype"), url("assets/fonts/CircularStd-Bold.woff") format("woff"), url("assets/fonts/CircularStd-Bold.ttf") format("truetype"), url("assets/fonts/CircularStd-Bold.svg#bcc26993292869431e54c666aafa8fcd") format("svg"); 7 | } 8 | 9 | :root { 10 | --primary-color: none; 11 | --overlay-color: rgba(255, 255, 255, 0.9); 12 | --menu-speed: 0.75s; 13 | --light-text-color: #444; 14 | --black-color: #000; 15 | --white-color: #fff; 16 | --hero-color: black; 17 | } 18 | .work-hero-card{ 19 | display: block; 20 | margin:0 auto; 21 | width:80%; 22 | background: #fff; 23 | align-items: center; 24 | padding:0; 25 | /* border-radius: 10px; */ 26 | padding-bottom: 15px; 27 | /* border:1px solid #44444450; */ 28 | box-shadow: 1px 1px 20px #00000025; 29 | cursor: pointer; 30 | transition: all 1s; 31 | height: 100%; 32 | 33 | } 34 | #work-text{ 35 | text-align: center; 36 | font-size: 1.5em; 37 | } 38 | .work-hero-card h1{ 39 | padding-top: 20px; 40 | text-align: center; 41 | font-size: 0.8em; 42 | font-weight: bold; 43 | } 44 | .work-hero-card:hover{ 45 | width:85%; 46 | box-shadow: 0px 0px 20px #88888875; 47 | animation:zoom 1s; 48 | /* filter: none; */ 49 | } 50 | .work-card-hero-img{ 51 | width:100%; 52 | display: block; 53 | /* border:1px solid #44444450; */ 54 | /* border-radius: 10px; */ 55 | border-bottom: none; 56 | margin:0 auto; 57 | left:0; 58 | right: 0; 59 | } 60 | .work-double-row{ 61 | padding-left:120px; 62 | padding-right: 120px; 63 | margin-top: 80px; 64 | } 65 | .project-star { 66 | position: absolute; 67 | background: #ffff0080; 68 | border-radius: 50px; 69 | padding: 2px 6px; 70 | font-size: 0.8em; 71 | top: 40px; 72 | right: 0; 73 | } 74 | 75 | .project-star-mobile { 76 | display: none; 77 | background: #ffff0080; 78 | border-radius: 50px; 79 | padding: 2px 6px; 80 | width: 50%; 81 | margin-bottom: 10px; 82 | text-align: center; 83 | font-size: 0.8em; 84 | 85 | } 86 | 87 | #work-row { 88 | padding-left: 135px; 89 | padding-right: 135px; 90 | width: 100vw; 91 | } 92 | 93 | .work-hero { 94 | /* border:2px solid #444; */ 95 | border-radius: 10px; 96 | /* box-shadow: 0px 0px 5px #444; */ 97 | width: 90%; 98 | transition: width 1s; 99 | } 100 | .work-hero:hover{ 101 | width: 95%; 102 | } 103 | 104 | .work-des { 105 | padding-top: 40px; 106 | 107 | } 108 | 109 | .work-des h1 { 110 | font-weight: bold; 111 | } 112 | 113 | .work-des p { 114 | text-align: justify; 115 | font-weight: 100; 116 | } 117 | 118 | .work-hero-img { 119 | width: 100%; 120 | border-radius: 10px; 121 | } 122 | 123 | .technologies h2 { 124 | font-size: 0.8em; 125 | font-weight: bold; 126 | } 127 | 128 | .tech-stack { 129 | cursor: pointer; 130 | margin-right: 10px; 131 | background: #f2f2f2; 132 | padding: 2px 4px; 133 | font-size: 0.8em; 134 | transition: background 1s; 135 | } 136 | 137 | .tech-stack:hover { 138 | background: beige; 139 | } 140 | 141 | .featured { 142 | margin-top: 10px; 143 | } 144 | 145 | .partners { 146 | /* background:#f2f2f2; */ 147 | height: 50px; 148 | margin-right: 20px; 149 | } 150 | 151 | #partner-logo { 152 | height: 40px; 153 | cursor: pointer; 154 | transition: all 1s; 155 | } 156 | 157 | #partner-logo:hover { 158 | box-shadow: 0px 0px 10px #444; 159 | } 160 | 161 | .work-read { 162 | float: right; 163 | font-size: 0.8em; 164 | } 165 | 166 | .work-read:hover { 167 | background: #444; 168 | color: white !important; 169 | border: 2px solid #444 !important; 170 | } 171 | 172 | body { 173 | font-family: 'Poppins', sans-serif; 174 | color: var(--light-text-color); 175 | overflow-x: hidden; 176 | } 177 | 178 | .comingsoon h1 { 179 | font-size: 3em; 180 | } 181 | 182 | .comingsoon { 183 | position: absolute; 184 | margin: auto; 185 | top: 0; 186 | /* background: white; */ 187 | text-align: center; 188 | right: 0; 189 | bottom: 0; 190 | left: 0; 191 | /* width: 40em; */ 192 | height: 10em; 193 | animation: opac 0.1s ease-in-out 5; 194 | } 195 | 196 | .comingsoon a { 197 | color: #444; 198 | font-weight: bold; 199 | text-decoration: none; 200 | transition: font-size 1s; 201 | } 202 | 203 | .comingsoon a:hover { 204 | color: blue; 205 | font-size: 1.5em; 206 | } 207 | 208 | .social-icons a { 209 | color: var(--light-text-color); 210 | text-decoration: none; 211 | transition: all 1s; 212 | } 213 | 214 | .social-icons a:hover { 215 | color: blue; 216 | } 217 | 218 | li span a { 219 | color: #444; 220 | text-decoration: none; 221 | 222 | } 223 | 224 | li span a:hover { 225 | color: #444; 226 | text-decoration: none; 227 | } 228 | 229 | .copyright-legal { 230 | font-size: 1.1em; 231 | color: #444; 232 | letter-spacing: 0px; 233 | text-align: left; 234 | } 235 | 236 | .legal-links { 237 | text-decoration: none; 238 | font-weight: bold; 239 | transition: all 1s; 240 | } 241 | 242 | .legal-links:hover { 243 | text-decoration: none; 244 | color: blue; 245 | } 246 | 247 | .legal a, 248 | .legal a:hover, 249 | .legal a:active { 250 | color: #444; 251 | text-decoration: none; 252 | } 253 | 254 | .privacy-policy h1 { 255 | font-size: 2.5em; 256 | /* font-family: 'CircularStd'; */ 257 | font-weight: bold; 258 | letter-spacing: 0.1rem; 259 | } 260 | 261 | .privacy-policy h2 { 262 | font-size: 25px; 263 | font-family: 'CircularStd'; 264 | /* letter-spacing: 0.1rem; */ 265 | } 266 | 267 | .legal-des { 268 | text-align: justify; 269 | font-weight: 500; 270 | } 271 | 272 | .legal-des strong { 273 | /* font-size: 1.1em; */ 274 | font-weight: 900; 275 | } 276 | 277 | .privacy-policy p { 278 | padding-right: 13vw; 279 | letter-spacing: 0.8px; 280 | } 281 | 282 | .nav-desk { 283 | height: 10vh; 284 | /* position: fixed; */ 285 | display: block; 286 | width: 80vw; 287 | margin: auto; 288 | 289 | margin-top: 20px; 290 | left: 0; 291 | right: 0; 292 | /* background: black; */ 293 | } 294 | 295 | .nav-logo { 296 | height: 100%; 297 | float: left; 298 | 299 | 300 | } 301 | 302 | 303 | 304 | .menu-wrap { 305 | position: fixed; 306 | top: 50px; 307 | right: 50px; 308 | z-index: 1; 309 | display: none; 310 | } 311 | 312 | .menu-wrap .toggler { 313 | position: absolute; 314 | top: 0px; 315 | right: 0; 316 | z-index: 2; 317 | cursor: pointer; 318 | width: 50px; 319 | height: 50px; 320 | opacity: 0; 321 | } 322 | 323 | .menu-wrap .hamburger { 324 | position: absolute; 325 | top: 0; 326 | right: 0; 327 | z-index: 1; 328 | width: 60px; 329 | height: 60px; 330 | padding: 1rem; 331 | background: var(--primary-color); 332 | display: flex; 333 | align-items: center; 334 | justify-content: center; 335 | } 336 | 337 | /* Hamburger Line */ 338 | .menu-wrap .hamburger>div { 339 | position: relative; 340 | flex: none; 341 | width: 100%; 342 | height: 2px; 343 | z-index: 1; 344 | background: black; 345 | display: flex; 346 | align-items: center; 347 | justify-content: center; 348 | transition: all 0.4s ease; 349 | } 350 | 351 | /* Hamburger Lines - Top & Bottom */ 352 | .menu-wrap .hamburger>div::before, 353 | .menu-wrap .hamburger>div::after { 354 | content: ''; 355 | position: absolute; 356 | z-index: 1; 357 | top: -10px; 358 | width: 100%; 359 | height: 2px; 360 | background: inherit; 361 | } 362 | 363 | /* Moves Line Down */ 364 | .menu-wrap .hamburger>div::after { 365 | top: 10px; 366 | } 367 | 368 | /* Toggler Animation */ 369 | .menu-wrap .toggler:checked+.hamburger>div { 370 | transform: rotate(135deg); 371 | } 372 | 373 | /* Turns Lines Into X */ 374 | .menu-wrap .toggler:checked+.hamburger>div:before, 375 | .menu-wrap .toggler:checked+.hamburger>div:after { 376 | top: 0; 377 | transform: rotate(90deg); 378 | } 379 | 380 | /* Rotate On Hover When Checked */ 381 | .menu-wrap .toggler:checked:hover+.hamburger>div { 382 | transform: rotate(225deg); 383 | } 384 | 385 | /* Show Menu */ 386 | .menu-wrap .toggler:checked~.menu { 387 | visibility: visible; 388 | } 389 | 390 | .menu-wrap .toggler:checked~.menu>div { 391 | transform: scale(1); 392 | transition-duration: var(--menu-speed); 393 | } 394 | 395 | .menu-wrap .toggler:checked~.menu>div>div { 396 | opacity: 1; 397 | transition: opacity 0.4s ease 0.4s; 398 | } 399 | 400 | .menu-wrap .menu { 401 | position: fixed; 402 | top: 0; 403 | right: 0; 404 | width: 100%; 405 | height: 100%; 406 | z-index: 1; 407 | visibility: hidden; 408 | overflow: hidden; 409 | display: flex; 410 | align-items: center; 411 | justify-content: center; 412 | } 413 | 414 | .menu-wrap .menu>div { 415 | background: var(--overlay-color); 416 | border-radius: 50%; 417 | width: 200vw; 418 | height: 200vw; 419 | display: flex; 420 | flex: none; 421 | align-items: center; 422 | justify-content: center; 423 | transform: scale(0); 424 | transition: all 0.4s ease; 425 | } 426 | 427 | .menu-wrap .menu>div>div { 428 | text-align: center; 429 | max-width: 90vw; 430 | max-height: 100vh; 431 | opacity: 0; 432 | transition: opacity 0.4s ease; 433 | } 434 | 435 | .menu-wrap .menu>div>div>ul>li { 436 | list-style: none; 437 | color: var(--white-color); 438 | font-size: 1.5rem; 439 | padding: 1rem; 440 | } 441 | 442 | .menu-wrap .menu>div>div>ul>li>a { 443 | color: inherit; 444 | text-decoration: none; 445 | transition: color 0.4s ease; 446 | } 447 | 448 | 449 | .legal { 450 | position: absolute; 451 | bottom: 25px; 452 | right: 25px; 453 | } 454 | 455 | 456 | .hero-tag { 457 | margin-top: 20vh; 458 | text-align: left; 459 | font-size: 4.5em; 460 | font-weight: bold; 461 | color: var(--hero-color); 462 | font-family: 'CircularStd', sans-serif; 463 | } 464 | 465 | .contact-hero { 466 | margin-top: 0vh; 467 | font-size: 3.5em; 468 | } 469 | 470 | .hero-des { 471 | padding-right: 60px; 472 | text-align: justify; 473 | /* font-weight: 800; */ 474 | letter-spacing: 1.2; 475 | } 476 | 477 | .contact-des { 478 | letter-spacing: 0.2; 479 | } 480 | 481 | .input-container { 482 | padding: 10px 0px; 483 | } 484 | 485 | .form-group { 486 | margin-bottom: 1rem; 487 | } 488 | 489 | label { 490 | display: inline-block; 491 | margin-bottom: 0.5rem; 492 | } 493 | 494 | .form-control { 495 | height: calc(2.25rem + 2px); 496 | padding: .5rem .75rem; 497 | width: 90%; 498 | font-size: 1rem; 499 | line-height: 1.5; 500 | color: #495057; 501 | background: none; 502 | border: none; 503 | border-bottom: 2px solid #444; 504 | border-radius: 0rem; 505 | transition: all .5s ease-in-out; 506 | outline: none; 507 | } 508 | 509 | .form-control:focus { 510 | outline: none; 511 | border-bottom: 2px solid blue; 512 | box-shadow: none; 513 | } 514 | 515 | .form-control:hover { 516 | background: whitesmoke; 517 | } 518 | 519 | /* input:focus, textarea:focus, select:focus{ 520 | outline: none; 521 | } */ 522 | .learn-btn { 523 | padding: 5px 10px; 524 | background: var(--light-text-color); 525 | color: white; 526 | border: 2px solid var(--light-text-color); 527 | letter-spacing: 0.1; 528 | transition: all 1s; 529 | } 530 | 531 | .contact-des a { 532 | text-decoration: none; 533 | color: #444; 534 | transition: color 1s; 535 | } 536 | 537 | .contact-des a:hover { 538 | color: blue; 539 | } 540 | 541 | .learn-btn:hover { 542 | background: blue; 543 | border: 2px solid blue; 544 | } 545 | 546 | .contact-btn { 547 | margin-left: 6px; 548 | padding: 5px 10px; 549 | color: var(--light-text-color); 550 | background: none; 551 | border: 2px solid var(--light-text-color); 552 | transition: all 1s; 553 | } 554 | 555 | .contact-btn:hover { 556 | color: blue; 557 | border: 2px solid blue; 558 | } 559 | 560 | #hero-img { 561 | margin-top: 50px; 562 | width: 90%; 563 | } 564 | 565 | #left-hero { 566 | padding-left: 150px; 567 | } 568 | 569 | #logo { 570 | margin-top: 5px; 571 | height: 80%; 572 | padding: 6px; 573 | border: 4px solid #444; 574 | border-radius: 50%; 575 | } 576 | 577 | /* .nav-items{ 578 | color:black; 579 | float:right; 580 | } */ 581 | ul { 582 | float: right; 583 | /* color:white; */ 584 | list-style: none; 585 | padding: 30px 0px; 586 | } 587 | 588 | li { 589 | /* text-transform: uppercase; */ 590 | display: inline; 591 | font-size: 16px; 592 | letter-spacing: 0.1; 593 | padding: 0px 15px; 594 | } 595 | 596 | .social-icons { 597 | margin-top: 30%; 598 | } 599 | 600 | .footer-full { 601 | width: 80vw; 602 | margin: 0 auto; 603 | padding: 30px 10px; 604 | padding-top: 100px; 605 | position: relative; 606 | bottom: 0; 607 | left: 0; 608 | right: 0; 609 | } 610 | 611 | .footer-credits { 612 | float: right; 613 | /* display: inline; */ 614 | } 615 | 616 | .footer-credits a { 617 | color: #444; 618 | font-weight: bold; 619 | text-decoration: none; 620 | transition: all 1s; 621 | } 622 | 623 | .footer-credits a:hover { 624 | color: blue; 625 | text-decoration: none; 626 | font-weight: bold; 627 | } 628 | 629 | .social-icons i { 630 | font-size: 2em; 631 | /* font-weight: 100; */ 632 | padding: 0px 5px; 633 | } 634 | 635 | li span { 636 | position: relative; 637 | /* display: block; */ 638 | cursor: pointer; 639 | } 640 | 641 | li span:before, 642 | li span:after { 643 | content: ''; 644 | position: absolute; 645 | width: 0%; 646 | height: 1px; 647 | top: 50%; 648 | margin-top: -0.5px; 649 | background: var(--black-color); 650 | } 651 | 652 | li span:before { 653 | left: -2.5px; 654 | } 655 | 656 | li span:after { 657 | right: 2.5px; 658 | background: var(--black-color); 659 | transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1); 660 | } 661 | 662 | .footer-full { 663 | padding-top: 60px; 664 | } 665 | 666 | li span:hover:before { 667 | background: var(--black-color); 668 | width: 100%; 669 | transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1); 670 | } 671 | 672 | li span:hover:after { 673 | background: transparent; 674 | width: 100%; 675 | transition: 0s; 676 | } 677 | 678 | #index-body { 679 | /* background: url('assets/img/mobile.png'); */ 680 | background-size: cover; 681 | background-repeat: no-repeat; 682 | background-position: center; 683 | } 684 | 685 | /* Tablets */ 686 | @media (min-width: 768px) and (max-width: 1024px) { 687 | #left-hero { 688 | padding-left: 80px; 689 | flex: 0 0 100% !important; 690 | max-width: 100% !important; 691 | 692 | } 693 | 694 | #work-row { 695 | padding-left: 50px; 696 | padding-right: 50px; 697 | } 698 | 699 | .work-hero { 700 | width: 100%; 701 | } 702 | 703 | #hero-right { 704 | display: none; 705 | } 706 | .work-double-row{ 707 | padding-left: 30px; 708 | padding-right: 30px; 709 | } 710 | #index-body { 711 | /* background: url('assets/img/mobile.png'); */ 712 | background-size: cover; 713 | background-repeat: no-repeat; 714 | background-position: center; 715 | height: 100vh; 716 | width: 100vw; 717 | } 718 | /* .work-double-row{ 719 | padding-left: 50px; 720 | padding-right: 50px; 721 | } */ 722 | 723 | } 724 | 725 | /* #logo { 726 | display: none; 727 | } */ 728 | 729 | @media only screen and (max-width: 768px) { 730 | 731 | /* For mobile phones: */ 732 | .nav-items { 733 | width: 0; 734 | height: 0; 735 | display: none; 736 | } 737 | .work-double-row{ 738 | padding:30px 20px; 739 | padding-bottom: 0; 740 | } 741 | .work-hero-card{ 742 | width:100%; 743 | margin-bottom: 25px; 744 | } 745 | #row-3{ 746 | margin-top: 0px; 747 | padding:0 20px; 748 | } 749 | #index-body { 750 | /* background: url('assets/img/mobile.png'); */ 751 | background-size: cover; 752 | background-repeat: no-repeat; 753 | background-position: center; 754 | height: 100vh; 755 | } 756 | 757 | #left-hero { 758 | padding-left: 50px; 759 | ; 760 | } 761 | 762 | #work-row { 763 | padding-right: 0; 764 | padding-left: 30px; 765 | } 766 | 767 | .work-des h1 { 768 | text-align: center; 769 | } 770 | 771 | .work-read { 772 | float: none; 773 | } 774 | 775 | #logo { 776 | display: none; 777 | /* height: 65%; 778 | margin-top: 28px; */ 779 | } 780 | 781 | .hero-tag { 782 | margin-top: 20vh; 783 | font-size: 4em; 784 | } 785 | 786 | #hero-right { 787 | display: none; 788 | } 789 | 790 | .hero-des { 791 | padding-right: 30px; 792 | } 793 | 794 | .menu-wrap { 795 | display: block; 796 | } 797 | 798 | .menu ul li { 799 | display: block !important; 800 | } 801 | 802 | .menu ul li a { 803 | color: var(--black-color) !important; 804 | } 805 | 806 | .menu-wrap .hamburger { 807 | z-index: 2; 808 | } 809 | 810 | .menu-wrap .toggler { 811 | z-index: 3; 812 | } 813 | 814 | .contact-hero { 815 | margin-top: 10vh; 816 | } 817 | 818 | .footer-full { 819 | text-align: center; 820 | padding-top: 40px !important; 821 | } 822 | 823 | #contact-social { 824 | margin-top: 10%; 825 | } 826 | 827 | .footer-credits { 828 | display: block; 829 | text-align: center; 830 | padding-top: 10px; 831 | float: none; 832 | } 833 | 834 | #legal-hero { 835 | margin-top: 5vh !important; 836 | text-align: left; 837 | } 838 | 839 | #legal-hero-des { 840 | padding-right: 10px; 841 | text-align: left; 842 | font-size: 0.8em; 843 | } 844 | 845 | .privacy-policy p { 846 | padding-right: 1vw; 847 | /* text-align: left; */ 848 | } 849 | 850 | .project-star { 851 | display: none; 852 | } 853 | 854 | .project-star-mobile { 855 | display: block; 856 | } 857 | } 858 | 859 | 860 | ::-webkit-scrollbar { 861 | width: 5px; 862 | } 863 | 864 | /* Track */ 865 | ::-webkit-scrollbar-track { 866 | background: white; 867 | 868 | } 869 | 870 | /* Handle */ 871 | ::-webkit-scrollbar-thumb { 872 | background: #444; 873 | border-radius: 50px; 874 | 875 | } 876 | 877 | /* Handle on hover */ 878 | ::-webkit-scrollbar-thumb:hover { 879 | background: #555; 880 | 881 | } 882 | -------------------------------------------------------------------------------- /sw.js: -------------------------------------------------------------------------------- 1 | const staticCacheName = 'site-static-v1'; 2 | const assets = [ 3 | '/Portfolio/', 4 | '/Portfolio/index.html', 5 | '/style.css', 6 | '/Portfolio/assets/img/mobile.png', 7 | '/Portfolio/assets/img/favicon.png', 8 | 'https://fonts.googleapis.com/css?family=Lato:300,400,700' 9 | ]; 10 | // install event 11 | self.addEventListener('install', evt => { 12 | evt.waitUntil( 13 | caches.open(staticCacheName).then((cache) => { 14 | console.log('caching shell assets'); 15 | cache.addAll(assets); 16 | }) 17 | ); 18 | }); 19 | // activate event 20 | self.addEventListener('activate', evt => { 21 | evt.waitUntil( 22 | caches.keys().then(keys => { 23 | return Promise.all(keys 24 | .filter(key => key !== staticCacheName) 25 | .map(key => caches.delete(key)) 26 | ); 27 | }) 28 | ); 29 | }); 30 | // When we change the name we could have multiple cache, to avoid that we need to delet the old cache, so with this function we check the key that is our cache naming, if it is different from the actual naming we delete it, in this way we will always have only the last updated cache. 31 | // fetch event 32 | self.addEventListener('fetch', evt => { 33 | evt.respondWith( 34 | caches.match(evt.request).then(cacheRes => { 35 | return cacheRes || fetch(evt.request); 36 | }) 37 | ); 38 | }); -------------------------------------------------------------------------------- /work.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 23 | 25 | Work | Ishan Sharma 26 | 27 | 28 | 29 | 30 |
31 | 47 |
48 |
49 |

My Work.

50 |

Take a look at some of my projects I've done, 51 | apps or websites that I've made and my designs. 52 |

53 | 54 |
55 |
56 | 57 |
58 |
59 |
60 |
61 |
62 | 63 |
64 |
65 |
66 |
67 | 68 |
69 |

Hotspoter

70 |
71 |
72 | 5 Million+ Downloads 73 |
74 |
75 |

Hotspoter is special software that allows users to transform their computer into a wireless 76 | router. This is ideal for people who are looking for a way to use their existing internet 77 | connection to surf on their Smartphone, while the connection can also be shared with a large 78 | number of different people at the same time without weakening the signal strength.

79 |
80 |

Technologies Used

81 | 82 | CSharp 83 | 84 | 85 | .Net Framework 86 | 87 | 88 |
89 | 105 | 106 | 109 |
110 |
111 | 5 Million+ Downloads 112 |
113 |
114 |
115 |
116 |
117 | 118 |
119 | 120 | 121 |

mehaksharma.co

122 |
PORTFOLIO
123 |
124 | 125 |
126 |
127 |
128 | 129 |

ishandeveloper.com

130 |
PORTFOLIO
131 |
132 |
133 |
134 |
135 |
136 | 137 |
138 | 139 |

URL Shortener

140 |
WEB APP
141 |
142 | 143 |
144 |
145 |
146 | 147 | 148 |

News App [GoLang]

149 |
WEB APP
150 |
151 |
152 |
153 |
154 |
155 | 156 |
157 | 158 | 159 |

FoodFuel

160 |
WEB APP
161 |
162 | 163 |
164 |
165 |
166 | 167 | 168 |

Timestamp Microservice

169 |
API
170 |
171 |
172 |
173 | 174 |
175 |
176 | 177 |
178 | 179 | 180 |

Task-To-Do

181 |
WEB APP
182 |
183 | 184 |
185 |
186 |
187 | 188 | 189 |

Basketball Tournament

190 |
WEB TEMPLATE
191 |
192 |
193 |
194 | 195 | 196 |
197 |
198 | 199 |
200 | 201 | 202 |

Dictionary

203 |
FLUTTER APP
204 |
205 | 206 |
207 |
208 |
209 | 210 | 211 |

PokemonPedia

212 |
FLUTTER APP
213 |
214 |
215 |
216 | 217 |
218 |
219 | 220 |
221 | 222 | 223 |

Calculator

224 |
FLUTTER APP
225 |
226 | 227 |
228 |
229 |
230 | 231 | 232 |

QR Code Scanner

233 |
FLUTTER APP
234 |
235 |
236 |
237 |
238 |
239 | 240 |
241 | 242 | 243 |

Presentations in Browser

244 |
WEB APP
245 |
246 | 247 |
248 |
249 |
250 | 251 | 252 |

SeeFood

253 |
UI/UX
254 |
255 |
256 |
257 | 258 |
259 | 273 |
274 | 293 | 294 | 295 | --------------------------------------------------------------------------------