├── .bundle └── config ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── _config.yml ├── _includes ├── about.html ├── blogs.html ├── extra.html ├── footer.html ├── googeanalytics.html ├── head.html ├── nav.html ├── projects.html ├── scripts.html └── skills.html ├── _layouts └── default.html ├── assets ├── css │ ├── card.css │ ├── main.css │ └── progress.css ├── images │ ├── background.png │ ├── collage.jpg │ ├── data-destroyer.png │ ├── elementary.png │ ├── favicon.ico │ ├── google-cloud-backup.png │ ├── koalamate.png │ ├── mentors.jpg │ ├── mobile-landscape.jpg │ ├── mpw.jpg │ ├── nextcloud-enc.png │ ├── old-lcd.jpg │ ├── pi-cloud.jpg │ ├── pp.jpg │ ├── python-chat.png │ ├── raspberry-pi-monitor.png │ ├── right-open-mini.svg │ ├── s3scan.png │ ├── social-share-count.jpeg │ └── soot-spirits.png └── js │ ├── main.js │ └── projects.js ├── index.html ├── jsconfig.json ├── robots.txt ├── tmp └── screenshot.jpg └── vendor ├── css ├── font-awesome.css ├── hint.base.min.css ├── normalize.css ├── normalize.min.css.map └── semi-transparent-buttons.css └── js ├── css-polyfills.min.js ├── css-polyfills.min.js.map ├── flexibility.js ├── jquery-3.3.1.js └── jquery.smooth-scroll.js /.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_PATH: "vendor" 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | _site 3 | vendor/ruby 4 | .vscode -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | gem "jekyll" -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | addressable (2.5.2) 5 | public_suffix (>= 2.0.2, < 4.0) 6 | colorator (1.1.0) 7 | concurrent-ruby (1.0.5) 8 | em-websocket (0.5.1) 9 | eventmachine (>= 0.12.9) 10 | http_parser.rb (~> 0.6.0) 11 | eventmachine (1.2.7) 12 | ffi (1.9.25) 13 | forwardable-extended (2.6.0) 14 | http_parser.rb (0.6.0) 15 | i18n (0.9.5) 16 | concurrent-ruby (~> 1.0) 17 | jekyll (3.8.3) 18 | addressable (~> 2.4) 19 | colorator (~> 1.0) 20 | em-websocket (~> 0.5) 21 | i18n (~> 0.7) 22 | jekyll-sass-converter (~> 1.0) 23 | jekyll-watch (~> 2.0) 24 | kramdown (~> 1.14) 25 | liquid (~> 4.0) 26 | mercenary (~> 0.3.3) 27 | pathutil (~> 0.9) 28 | rouge (>= 1.7, < 4) 29 | safe_yaml (~> 1.0) 30 | jekyll-sass-converter (1.5.2) 31 | sass (~> 3.4) 32 | jekyll-watch (2.0.0) 33 | listen (~> 3.0) 34 | kramdown (1.17.0) 35 | liquid (4.0.0) 36 | listen (3.1.5) 37 | rb-fsevent (~> 0.9, >= 0.9.4) 38 | rb-inotify (~> 0.9, >= 0.9.7) 39 | ruby_dep (~> 1.2) 40 | mercenary (0.3.6) 41 | pathutil (0.16.1) 42 | forwardable-extended (~> 2.6) 43 | public_suffix (3.0.2) 44 | rb-fsevent (0.10.3) 45 | rb-inotify (0.9.10) 46 | ffi (>= 0.5.0, < 2) 47 | rouge (3.2.0) 48 | ruby_dep (1.5.0) 49 | safe_yaml (1.0.4) 50 | sass (3.5.7) 51 | sass-listen (~> 4.0.0) 52 | sass-listen (4.0.0) 53 | rb-fsevent (~> 0.9, >= 0.9.4) 54 | rb-inotify (~> 0.9, >= 0.9.7) 55 | 56 | PLATFORMS 57 | ruby 58 | 59 | DEPENDENCIES 60 | jekyll 61 | 62 | BUNDLED WITH 63 | 1.16.3 64 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Portfolio 2 | 3 | A simple and modern portfolio template that is lightweight, mobile responsive and looks modern. 4 | 5 | - [Demo](#demo) 6 | - [Screenshots](#screenshots) 7 | - [Features](#features) 8 | - [Installation](#installation) 9 | 10 | ### Demo 11 | [abhn.github.io/portfolio](https://abhn.github.io/portfolio) 12 | 13 | ### Screenshots 14 | ![homepage](tmp/screenshot.jpg?raw=true "Homepage") 15 | 16 | ### Features 17 | - Single page portfolio made with vanilla CSS and jQuery 18 | - Sections: Landing, About, Skills (with neat bar graphs), Projects, Contact 19 | - Smooth scrolling 20 | - Fully mobile responsive, made with latest CSS3 grid and flexbox, polyfills included 21 | - Lightweight and easily customizable 22 | 23 | ### Installation 24 | - Clone this repository and in the settings, set up Github pages in the setting and optionally a custom domain. The site is live now on `your-username.github.io/portfolio`. 25 | - In the config variables, add your details and if you use Google Analytics, add your Publisher ID in the `google_analytics` variable. 26 | - You can add/remove sections from the `_layouts/default.html` file, and then adding the corresponding html file in `_includes/` directory. 27 | 28 | ### License 29 | GPL 30 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | title: Abhishek Nagekar 2 | description: Web & Security Engineer 3 | site_title: '@abhn - Abhishek Nagekar' 4 | 5 | # Build settings 6 | markdown: kramdown 7 | exclude: [vendor/ruby] 8 | 9 | # Personalization 10 | github_username: abhn 11 | blog_url: https://www.nagekar.com 12 | email: abhishek@nagekar.com 13 | keybase_username: abhn 14 | twitter_username: abhn_ 15 | reddit_username: abhn 16 | 17 | # absolute or relative 18 | profile_picture: assets/images/pp.jpg 19 | 20 | # Google Analytics ID 21 | google_analytics: -------------------------------------------------------------------------------- /_includes/about.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
About
5 |

6 | I like working with computers. It's my hobby and my profession. I love the Internet and the way it works, and I am comfortable working on web applications; frontend and backend. I've worked on smartphone apps, both native and hybrid, and I have experience with Linux system administration. I have a keen interest in securing information systems and building secure systems. 7 |

8 |

9 | My role models include old-school programmers and hackers who never make it to the mainstream news, but are responsible for most of the software that most people use on an everyday basis. I promote, support and use free and open source software to the extent possible. 10 |

11 |

12 | I maintain a little blog at nagekar.com where I write about my recent interests and other activities. I post my software projects on GitHub. My email address can be found at the bottom of this page. 13 |

14 |
15 |
16 |
17 | -------------------------------------------------------------------------------- /_includes/blogs.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
Blog
5 |
6 |
7 |
8 |
-------------------------------------------------------------------------------- /_includes/extra.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
Contact
5 |

6 | I'd love to hear from you! I'm open to collaborations, especially on open source projects. Interesting work opportunity? Shoot. Just want to have a coffee and talk about stars, cars or Pokémon? Awesome. 7 |

8 |

9 | Please feel free to write to me for anything: {{ site.email }} (PGP Key). It might take me a day to get back, but rest assured, you'll hear from me. 10 |

11 |

12 | My resume is available here: PDF, DOC 13 |

14 | 37 |
38 |
39 |
-------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | {{ site.title }} © {{ site.time | date: '%Y' }} 3 |
4 | -------------------------------------------------------------------------------- /_includes/googeanalytics.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- 1 | 2 | {% if site.google_analytics %} 3 | {% include googeanalytics.html %} 4 | {% endif %} 5 | 6 | {{ site.site_title }} 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /_includes/nav.html: -------------------------------------------------------------------------------- 1 | 2 | 17 | -------------------------------------------------------------------------------- /_includes/projects.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | 5 | 6 |
7 | 8 | Featured 9 | All 10 | WebDev 11 | Native 12 | Security 13 | DIY 14 | 15 |
16 | 17 |
18 | 19 |
20 |
21 |
22 |
-------------------------------------------------------------------------------- /_includes/scripts.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /_includes/skills.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
Skills
6 | 7 |
8 |
9 |

Summary

10 |

11 | I'm a web engineer fluent in modern web development. I have a serious passion for engineering solutions using the internet. InfoSec guy, blue team. Let's build a beautiful, speedy and safe web together. 12 |

13 |
14 |
15 |

Technical

16 |
17 |
18 |
Javascript
19 |
20 |
21 | 22 |
23 |
ReactJS
24 |
25 |
26 | 27 |
28 |
GNU/Linux
29 |
30 |
31 | 32 | 33 |
34 |
CSS3
35 |
36 |
37 | 38 |
39 |
Python
40 |
41 |
42 | 43 |
44 |
Flask
45 |
46 |
47 | 48 |
49 |
InfoSec
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
-------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {% include head.html %} 5 | 6 | 7 | 8 | {% include nav.html %} 9 | 10 | {% include about.html %} 11 | 12 | {% include skills.html %} 13 | 14 | {% include projects.html %} 15 | 16 | {% include blogs.html %} 17 | 18 | {% include extra.html %} 19 | 20 | {% include footer.html %} 21 | 22 | {% include scripts.html %} 23 | 24 | 25 | -------------------------------------------------------------------------------- /assets/css/card.css: -------------------------------------------------------------------------------- 1 | .wrapper { 2 | max-width: 400px; 3 | /* margin: 50px auto; */ 4 | padding-left: 1em; 5 | padding-right: 1em; 6 | } 7 | 8 | /** 9 | * Helpers 10 | */ 11 | .border-tlr-radius { 12 | border-top-left-radius: 2px; 13 | border-top-right-radius: 2px; 14 | } 15 | 16 | .text-center { text-align: center; } 17 | 18 | .radius { border-radius: 2px; } 19 | 20 | .padding-tb { padding-top: 1.6rem; padding-bottom: 1.6rem;} 21 | 22 | .shadowDepth0 { box-shadow: 0 1px 3px rgba(0,0,0, 0.12); } 23 | 24 | .shadowDepth1 { 25 | box-shadow: 26 | 0 1px 3px rgba(0,0,0, 0.12), 27 | 0 1px 2px rgba(0,0,0, 0.24); 28 | } 29 | 30 | 31 | /** 32 | * Card Styles 33 | */ 34 | 35 | .card { 36 | background-color: #fff; 37 | margin-bottom: 1.6rem; 38 | box-shadow: -4px 8px 16px 0 rgba(0, 0, 0, 0.24); 39 | } 40 | 41 | .card__padding { 42 | padding: 1.6rem; 43 | padding-top: 0.8rem; 44 | } 45 | 46 | .card__image { 47 | min-height: 100px; 48 | background-color: #eee; 49 | width: 100%; 50 | max-height: 180px; 51 | overflow: hidden; 52 | border-bottom: solid 1px lightgray; 53 | } 54 | 55 | .card__content { 56 | position: relative; 57 | } 58 | 59 | /* card meta */ 60 | .card__meta time { 61 | font-size: 1rem; 62 | color: #bbb; 63 | margin-left: 0.8rem; 64 | float: right; 65 | } 66 | 67 | /* card article */ 68 | .card__article a { 69 | text-decoration: none; 70 | color: #444; 71 | transition: all 0.5s ease; 72 | } 73 | 74 | .card__article a:hover { 75 | color: #2980b9; 76 | } 77 | 78 | /* blog cards */ 79 | .blog-post { 80 | width: 100%; 81 | border-radius: 2px; 82 | display: grid; 83 | grid-template-columns: auto 50px; 84 | background-color: #fff; 85 | margin-bottom: 1.6rem; 86 | box-shadow: -4px 8px 16px 0 rgba(0, 0, 0, 0.24); 87 | } 88 | 89 | .blog-link { 90 | padding-left: 1rem; 91 | padding-right: 1rem; 92 | grid-column-start: 1; 93 | grid-column-end: 2; 94 | border-right: solid 1px lightgray; 95 | } 96 | 97 | .blog-link a { 98 | text-decoration: none; 99 | } 100 | 101 | .blog-link:hover { 102 | opacity: 0.6; 103 | cursor: pointer; 104 | } 105 | 106 | .blog-goto-link { 107 | display: flex; 108 | align-items: center; 109 | justify-content: center; 110 | cursor: pointer; 111 | 112 | grid-column-start: 2; 113 | grid-column-end: 3; 114 | } 115 | 116 | .blog-goto-link i { 117 | font-size: 2rem; 118 | color: #C0C0C0 119 | } 120 | 121 | .blog-goto-link:hover { 122 | opacity: 0.6; 123 | } 124 | 125 | .blog-extra { 126 | 127 | } 128 | 129 | .more-blogs { 130 | background-color: #2980b9; 131 | color: #fff; 132 | } 133 | 134 | .more-blogs a { 135 | color: #fff; 136 | } 137 | 138 | .blog-arrow { 139 | width: 16px; 140 | height: 58px; 141 | } 142 | 143 | #project-image { 144 | transition: all .5s; 145 | } 146 | 147 | #project-image:focus, 148 | #project-image:hover { 149 | transform: scale(1.1); 150 | } -------------------------------------------------------------------------------- /assets/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | min-width: 360px; 3 | font-family: 'PT Sans', sans-serif; 4 | font-size: 16px; 5 | } 6 | 7 | img { 8 | max-width: 100%; 9 | max-height: 100%; 10 | } 11 | 12 | .head { 13 | 14 | color: #fff; 15 | min-height: 100vh; 16 | 17 | display: -webkit-box; 18 | 19 | display: -ms-flexbox; 20 | 21 | display: flex; 22 | -webkit-box-align: center; 23 | -ms-flex-align: center; 24 | align-items: center; 25 | -webkit-box-pack: center; 26 | -ms-flex-pack: center; 27 | justify-content: center; 28 | position: relative; 29 | 30 | background: transparent; 31 | } 32 | 33 | .head-title { 34 | display: inline-block; 35 | -webkit-transition: color ease-in-out 0.3s; 36 | transition: color ease-in-out 0.3s; 37 | font-size: 56px; 38 | font-size: 3.5rem; 39 | font-family: 'PT Sans', Arial, Helvetica, sans-serif; 40 | font-weight: bold; 41 | } 42 | 43 | .animated { 44 | -webkit-animation: fade-in-down 0.6s; 45 | animation: fade-in-down 0.6s; 46 | -webkit-animation-delay: 0.6s; 47 | animation-delay: 0.6s; 48 | -webkit-animation-fill-mode: both; 49 | animation-fill-mode: both; 50 | } 51 | 52 | @-webkit-keyframes fade-in-down { 53 | 0% { 54 | opacity: 0; 55 | -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; 56 | -webkit-transform: translateY(-10px); 57 | transform: translateY(-10px); 58 | } 59 | 100% { 60 | opacity: 1; 61 | -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; 62 | -webkit-transform: translateY(0); 63 | transform: translateY(0); 64 | } 65 | } 66 | 67 | @keyframes fade-in-down { 68 | 0% { 69 | opacity: 0; 70 | -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; 71 | -webkit-transform: translateY(-10px); 72 | transform: translateY(-10px); 73 | } 74 | 100% { 75 | opacity: 1; 76 | -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; 77 | -webkit-transform: translateY(0); 78 | transform: translateY(0); 79 | } 80 | } 81 | 82 | .head-punchline { 83 | font-family: 'PT Sans', Arial, Helvetica, sans-serif; 84 | text-align: center; 85 | color: #fff; 86 | margin-top: 10px; 87 | font-size: 20px; 88 | font-size: 1.25rem; 89 | } 90 | 91 | .head-buttons { 92 | position: absolute; 93 | top: 32px; 94 | top: 2rem; 95 | left: 50%; 96 | -webkit-transform: translate(-50%, 0); 97 | transform: translate(-50%, 0); 98 | } 99 | 100 | .head-icon { 101 | font-size: 32px; 102 | font-size: 2rem; 103 | margin: 0 5px; 104 | } 105 | 106 | .head-buttons a { 107 | color: inherit; 108 | } 109 | 110 | .head-menu-wrap { 111 | position: absolute; 112 | bottom: 40px; 113 | left: 50%; 114 | -webkit-transform: translate(-50%, 0); 115 | transform: translate(-50%, 0); 116 | 117 | display: -ms-grid; 118 | 119 | display: grid; 120 | -ms-grid-columns: auto auto auto auto; 121 | grid-template-columns: auto auto auto auto; 122 | grid-column-gap: 10px; 123 | 124 | margin: 0 auto; 125 | } 126 | 127 | .justify-text { 128 | text-align: justify; 129 | } 130 | 131 | .progress-bars { 132 | margin-top: 30px; 133 | } 134 | 135 | .skills-grid { 136 | display: -ms-grid; 137 | display: grid; 138 | -ms-grid-columns: 40% 60%; 139 | grid-template-columns: 40% 60%; 140 | grid-gap: 20px; 141 | } 142 | 143 | .technical-skills { 144 | width: 90%; 145 | margin: 0 auto; 146 | } 147 | 148 | .center-align { 149 | text-align: center; 150 | } 151 | 152 | .projects-wrapper { 153 | display: -ms-grid; 154 | display: grid; 155 | -ms-grid-columns: 50% 50%; 156 | grid-template-columns: 50% 50%; 157 | grid-gap: 10px; 158 | } 159 | 160 | .full-width { 161 | width: 100%; 162 | max-width: 100%; 163 | } 164 | 165 | .section { 166 | max-width: 768px; 167 | margin: 60px auto; 168 | padding: 20px 0; 169 | min-height: 100vh; 170 | 171 | display: -webkit-box; 172 | 173 | display: -ms-flexbox; 174 | 175 | display: flex; 176 | -webkit-box-align: center; 177 | -ms-flex-align: center; 178 | align-items: center; 179 | -webkit-box-pack: center; 180 | -ms-flex-pack: center; 181 | justify-content: center; 182 | } 183 | 184 | .section.skills > div { 185 | width: 100%; 186 | } 187 | 188 | .skills-subsection { 189 | font-size: 20.8px; 190 | font-size: 1.3rem; 191 | } 192 | 193 | .section-heading { 194 | text-align: center; 195 | margin-bottom: 30px; 196 | font-family: 'PT Sans', Arial, Helvetica, sans-serif; 197 | font-size: 40px; 198 | font-size: 2.5rem; 199 | color: #222; 200 | font-weight: bold; 201 | } 202 | 203 | .nav-links { 204 | font-family: 'PT Sans', Arial, Helvetica, sans-serif; 205 | font-weight: bold; 206 | } 207 | 208 | .section-wrapper:nth-child(odd) { 209 | background: url(../images/background.png); 210 | background-repeat: repeat; 211 | } 212 | 213 | .section-wrapper:nth-child(odd) .section-heading { 214 | color: #fff; 215 | } 216 | 217 | .section-wrapper:nth-child(odd) .skills-subsection { 218 | color: #fff; 219 | } 220 | 221 | .section-wrapper:nth-child(odd) .paragraph-text { 222 | color: #fff; 223 | } 224 | 225 | .paragraph-text { 226 | font-family: 'PT Sans', sans-serif; 227 | font-size: 20.8px; 228 | font-size: 1.3rem; 229 | margin: 30px auto; 230 | color: #404040; 231 | } 232 | 233 | .paragraph-text-normal { 234 | font-family: 'PT Sans', sans-serif; 235 | color: #404040; 236 | } 237 | 238 | .pt-sans-font { 239 | font-family: 'PT Sans', sans-serif; 240 | } 241 | 242 | .skill-grid-item { 243 | -webkit-transition: all 0.3s ease-in-out; 244 | transition: all 0.3s ease-in-out; 245 | display: -webkit-box; 246 | display: -ms-flexbox; 247 | display: flex; 248 | -webkit-box-align: center; 249 | -ms-flex-align: center; 250 | align-items: center; 251 | -webkit-box-pack: center; 252 | -ms-flex-pack: center; 253 | justify-content: center; 254 | } 255 | 256 | 257 | .projects-grid { 258 | display: -ms-grid; 259 | display: grid; 260 | -ms-grid-columns: auto auto; 261 | grid-template-columns: auto auto; 262 | grid-auto-rows: auto; 263 | grid-row-gap: 20px; 264 | grid-column-gap: 10px; 265 | -webkit-box-pack: space-evenly; 266 | -ms-flex-pack: space-evenly; 267 | justify-content: space-evenly; 268 | } 269 | 270 | .footer { 271 | background-color: #444; 272 | display: -webkit-box; 273 | display: -ms-flexbox; 274 | display: flex; 275 | -webkit-box-pack: center; 276 | -ms-flex-pack: center; 277 | justify-content: center; 278 | -webkit-box-align: center; 279 | -ms-flex-align: center; 280 | align-items: center; 281 | min-height: 35px; 282 | color: #fff; 283 | font-family: 'PT Sans', Arial, Helvetica, sans-serif; 284 | 285 | background: url(../images/background.png); 286 | background-repeat: repeat; 287 | background-attachment: fixed; 288 | } 289 | 290 | .footer-text a { 291 | color: inherit; 292 | } 293 | 294 | .technologies-grid-item { 295 | width: 96.6666px; 296 | height: 96.6666px; 297 | background-color: #fff; 298 | } 299 | 300 | .project-card { 301 | padding: 10px; 302 | -webkit-transition: all ease-in-out 0.3s; 303 | transition: all ease-in-out 0.3s; 304 | color: #222; 305 | } 306 | 307 | .project-title { 308 | font-weight: bold; 309 | font-size: 20px; 310 | font-size: 1.25rem; 311 | font-family: Arial, sans-serif; 312 | margin: 10px 0 20px; 313 | display: -webkit-box; 314 | display: -ms-flexbox; 315 | display: flex; 316 | -webkit-box-pack: justify; 317 | -ms-flex-pack: justify; 318 | justify-content: space-between; 319 | -webkit-box-align: center; 320 | -ms-flex-align: center; 321 | align-items: center; 322 | } 323 | 324 | .project-link { 325 | margin: 10px 0; 326 | float: right; 327 | font-weight: 500; 328 | font-size: 16px; 329 | font-size: 1rem; 330 | } 331 | 332 | .project-tags { 333 | margin: 20px 0; 334 | } 335 | 336 | .project-tag-item { 337 | background-color: #444; 338 | border-radius: 3px; 339 | padding: 5px; 340 | color: #fff; 341 | } 342 | 343 | .post-date { 344 | float: right; 345 | } 346 | 347 | .blog-item { 348 | padding: 10px; 349 | -webkit-transition: all ease-in-out 0.3s; 350 | transition: all ease-in-out 0.3s; 351 | } 352 | 353 | .blog-title { 354 | font-size: 17.6px; 355 | font-size: 1.1rem; 356 | color: inherit; 357 | -webkit-transition: all ease-in-out 0.3s; 358 | transition: all ease-in-out 0.3s; 359 | } 360 | 361 | .more-blogs { 362 | font-size: 16px; 363 | font-size: 1rem; 364 | margin: 15px 0 20px; 365 | } 366 | 367 | .slightly-smaller-text { 368 | font-size: 14.4px; 369 | font-size: 0.9rem; 370 | } 371 | 372 | .extra { 373 | margin-bottom: 0px; 374 | } 375 | 376 | .experience-title { 377 | font-size: 22.4px; 378 | font-size: 1.4rem; 379 | font-weight: bold; 380 | } 381 | 382 | .profile-pic { 383 | border-radius: 50%; 384 | width: 170px; 385 | height: 170px; 386 | border: solid 2px white; 387 | } 388 | 389 | .profile-pic:hover { 390 | -webkit-transition: all 0.3s ease; 391 | transition: all 0.3s ease; 392 | box-shadow: 0 0px 16px 0 rgba(255,255,255,0.5); 393 | } 394 | 395 | .profile-pic-div { 396 | display: -webkit-box; 397 | display: -ms-flexbox; 398 | display: flex; 399 | -webkit-box-pack: center; 400 | -ms-flex-pack: center; 401 | justify-content: center; 402 | margin-bottom: 20px; 403 | } 404 | 405 | .experience-details { 406 | font-size: 20.8px; 407 | font-size: 1.3rem; 408 | display: -webkit-box; 409 | display: -ms-flexbox; 410 | display: flex; 411 | -webkit-box-pack: justify; 412 | -ms-flex-pack: justify; 413 | justify-content: space-between; 414 | -webkit-box-align: center; 415 | -ms-flex-align: center; 416 | align-items: center; 417 | } 418 | 419 | .experience-date { 420 | float: right; 421 | font-size: 17.6px; 422 | font-size: 1.1rem; 423 | } 424 | 425 | #nav { 426 | background: url(../images/background.png); 427 | background-repeat: repeat; 428 | } 429 | 430 | a { 431 | color: #222; 432 | } 433 | 434 | .extra-links { 435 | display: -webkit-box; 436 | display: -ms-flexbox; 437 | display: flex; 438 | -webkit-box-align: center; 439 | -ms-flex-align: center; 440 | align-items: center; 441 | -webkit-box-pack: center; 442 | -ms-flex-pack: center; 443 | justify-content: center; 444 | margin-top: 80px; 445 | } 446 | 447 | .head-inner-wrap { 448 | 449 | } 450 | 451 | .bottom-link { 452 | margin: 0 5px; 453 | } 454 | 455 | .project-technologies { 456 | display: -ms-grid; 457 | display: grid; 458 | -ms-grid-columns: (minmax(120px, 1fr))[auto-fill]; 459 | grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); 460 | margin: 20px 0; 461 | grid-gap: 5px; 462 | grid-row-gap: 10px; 463 | width: 100%; 464 | } 465 | 466 | .project-technology { 467 | border: 1px solid #222; 468 | border-radius: 2px; 469 | margin: 0 5px; 470 | padding: 3px 5px; 471 | } 472 | 473 | .project-technology:first-child { 474 | margin-left: 0px; 475 | } 476 | 477 | .project-technology:last-child { 478 | margin-right: 0px; 479 | } 480 | 481 | /* Here follow all the media queries */ 482 | @media screen and (max-width: 850px) { 483 | 484 | .section { 485 | padding-left: 15px; 486 | padding-right: 15px; 487 | } 488 | } 489 | 490 | @media screen and (max-width: 775px) { 491 | .project-technologies { 492 | -ms-grid-columns: auto auto auto; 493 | grid-template-columns: auto auto auto; 494 | width: -webkit-fit-content; 495 | width: -moz-fit-content; 496 | width: fit-content; 497 | margin: 20px auto; 498 | } 499 | } 500 | 501 | @media screen and (max-width: 600px) { 502 | 503 | .head-menu-wrap { 504 | -ms-grid-columns: auto auto; 505 | grid-template-columns: auto auto; 506 | grid-column-gap: 10px; 507 | grid-row-gap: 10px; 508 | width: 80%; 509 | } 510 | 511 | #nav { 512 | background-attachment: unset; 513 | } 514 | 515 | .head-title { 516 | display: block; 517 | text-align: center; 518 | font-size: 2.75rem; 519 | } 520 | 521 | .head-punchline { 522 | text-align: center; 523 | } 524 | 525 | .skills-grid { 526 | -ms-grid-columns: 100%; 527 | grid-template-columns: 100%; 528 | -ms-grid-rows: auto auto; 529 | grid-template-rows: auto auto; 530 | } 531 | 532 | .set-size { 533 | font-size: 8em; 534 | } 535 | .pie-wrapper .label { 536 | font-size: 0.9rem; 537 | top: 3rem; 538 | } 539 | 540 | .projects-grid { 541 | -ms-grid-columns: auto; 542 | grid-template-columns: auto; 543 | } 544 | 545 | .projects-wrapper { 546 | display: -ms-grid; 547 | display: grid; 548 | -ms-grid-columns: auto; 549 | grid-template-columns: auto; 550 | grid-gap: 10px; 551 | -webkit-box-pack: center; 552 | -ms-flex-pack: center; 553 | justify-content: center; 554 | } 555 | } 556 | 557 | @media screen and (max-height: 450px) and (max-width: 600px) { 558 | .head { 559 | min-height: 525px; 560 | } 561 | } 562 | 563 | @media screen and (max-width: 400px) { 564 | .head-menu-wrap { 565 | -ms-grid-columns: auto auto; 566 | grid-template-columns: auto auto; 567 | grid-column-gap: 10px; 568 | grid-row-gap: 10px; 569 | } 570 | } 571 | 572 | @media screen and (max-height: 525px) { 573 | 574 | .head { 575 | min-height: 500px; 576 | } 577 | 578 | .head-menu-wrap { 579 | bottom: 15px; 580 | } 581 | } -------------------------------------------------------------------------------- /assets/css/progress.css: -------------------------------------------------------------------------------- 1 | .skillbar { 2 | position:relative; 3 | display:block; 4 | margin-bottom:15px; 5 | width:100%; 6 | background:#eee; 7 | height:28px; 8 | border-radius:3px; 9 | -moz-border-radius:3px; 10 | -webkit-border-radius:3px; 11 | -webkit-transition:0.4s linear; 12 | -moz-transition:0.4s linear; 13 | -ms-transition:0.4s linear; 14 | -o-transition:0.4s linear; 15 | transition:0.4s linear; 16 | -webkit-transition-property:width, background-color; 17 | -moz-transition-property:width, background-color; 18 | -ms-transition-property:width, background-color; 19 | -o-transition-property:width, background-color; 20 | transition-property:width, background-color; 21 | font-family: 'PT Sans', sans-serif; 22 | box-shadow: -4px 8px 16px 0 rgba(0, 0, 0, 0.24); 23 | } 24 | 25 | .skillbar-title { 26 | position:absolute; 27 | top:0; 28 | left:0; 29 | width:120px; 30 | font-weight:bold; 31 | font-size:13px; 32 | color:#ffffff; 33 | background:#6adcfa; 34 | -webkit-border-top-left-radius:3px; 35 | -webkit-border-bottom-left-radius:4px; 36 | -moz-border-radius-topleft:3px; 37 | -moz-border-radius-bottomleft:3px; 38 | border-top-left-radius:3px; 39 | border-bottom-left-radius:3px; 40 | font-size: 1.1rem; 41 | } 42 | 43 | .skillbar-title span { 44 | display:block; 45 | background:rgba(0, 0, 0, 0.1); 46 | padding:0 20px; 47 | height:28px; 48 | line-height:28px; 49 | -webkit-border-top-left-radius:3px; 50 | -webkit-border-bottom-left-radius:3px; 51 | -moz-border-radius-topleft:3px; 52 | -moz-border-radius-bottomleft:3px; 53 | border-top-left-radius:3px; 54 | border-bottom-left-radius:3px; 55 | } 56 | 57 | .skillbar-bar { 58 | height:28px; 59 | width:0px; 60 | background:#6adcfa; 61 | border-radius:3px; 62 | -moz-border-radius:3px; 63 | -webkit-border-radius:3px; 64 | } 65 | 66 | .skill-bar-percent { 67 | position:absolute; 68 | right:10px; 69 | top:0; 70 | font-size: 1rem; 71 | height:28px; 72 | line-height:28px; 73 | color:#ffffff; 74 | color:rgba(0, 0, 0, 0.4); 75 | } -------------------------------------------------------------------------------- /assets/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/fff34e5e7601d4d65f6ef8e0a1f6013296a3e33c/assets/images/background.png -------------------------------------------------------------------------------- /assets/images/collage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/fff34e5e7601d4d65f6ef8e0a1f6013296a3e33c/assets/images/collage.jpg -------------------------------------------------------------------------------- /assets/images/data-destroyer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/fff34e5e7601d4d65f6ef8e0a1f6013296a3e33c/assets/images/data-destroyer.png -------------------------------------------------------------------------------- /assets/images/elementary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/fff34e5e7601d4d65f6ef8e0a1f6013296a3e33c/assets/images/elementary.png -------------------------------------------------------------------------------- /assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/fff34e5e7601d4d65f6ef8e0a1f6013296a3e33c/assets/images/favicon.ico -------------------------------------------------------------------------------- /assets/images/google-cloud-backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/fff34e5e7601d4d65f6ef8e0a1f6013296a3e33c/assets/images/google-cloud-backup.png -------------------------------------------------------------------------------- /assets/images/koalamate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/fff34e5e7601d4d65f6ef8e0a1f6013296a3e33c/assets/images/koalamate.png -------------------------------------------------------------------------------- /assets/images/mentors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/fff34e5e7601d4d65f6ef8e0a1f6013296a3e33c/assets/images/mentors.jpg -------------------------------------------------------------------------------- /assets/images/mobile-landscape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/fff34e5e7601d4d65f6ef8e0a1f6013296a3e33c/assets/images/mobile-landscape.jpg -------------------------------------------------------------------------------- /assets/images/mpw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/fff34e5e7601d4d65f6ef8e0a1f6013296a3e33c/assets/images/mpw.jpg -------------------------------------------------------------------------------- /assets/images/nextcloud-enc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/fff34e5e7601d4d65f6ef8e0a1f6013296a3e33c/assets/images/nextcloud-enc.png -------------------------------------------------------------------------------- /assets/images/old-lcd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/fff34e5e7601d4d65f6ef8e0a1f6013296a3e33c/assets/images/old-lcd.jpg -------------------------------------------------------------------------------- /assets/images/pi-cloud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/fff34e5e7601d4d65f6ef8e0a1f6013296a3e33c/assets/images/pi-cloud.jpg -------------------------------------------------------------------------------- /assets/images/pp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/fff34e5e7601d4d65f6ef8e0a1f6013296a3e33c/assets/images/pp.jpg -------------------------------------------------------------------------------- /assets/images/python-chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/fff34e5e7601d4d65f6ef8e0a1f6013296a3e33c/assets/images/python-chat.png -------------------------------------------------------------------------------- /assets/images/raspberry-pi-monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/fff34e5e7601d4d65f6ef8e0a1f6013296a3e33c/assets/images/raspberry-pi-monitor.png -------------------------------------------------------------------------------- /assets/images/right-open-mini.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /assets/images/s3scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/fff34e5e7601d4d65f6ef8e0a1f6013296a3e33c/assets/images/s3scan.png -------------------------------------------------------------------------------- /assets/images/social-share-count.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/fff34e5e7601d4d65f6ef8e0a1f6013296a3e33c/assets/images/social-share-count.jpeg -------------------------------------------------------------------------------- /assets/images/soot-spirits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/fff34e5e7601d4d65f6ef8e0a1f6013296a3e33c/assets/images/soot-spirits.png -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- 1 | 2 | $(document).ready(function() { 3 | general_utils(); 4 | blog_posts(); 5 | }) 6 | 7 | 8 | function general_utils() { 9 | // smooth scrolling for nav links 10 | $('.head-menu-wrap a').smoothScroll(); 11 | $('.extra-link a').smoothScroll(); 12 | $('.profile-pic-link').smoothScroll(); 13 | 14 | $('.skillbar').each(function(){ 15 | $(this).find('.skillbar-bar').animate({ 16 | width: $(this).attr('data-percent') 17 | }, 1000); 18 | }); 19 | } 20 | 21 | function blog_posts() { 22 | 23 | // keeping it static, can be fetched from a blog dynamically as well 24 | let posts = [ 25 | { 26 | url: 'https://www.nagekar.com/2017/02/trip-to-bramhatal-uttarakhand.html', 27 | title: 'Trek To Bramhatal (Uttarakhand)', 28 | }, 29 | { 30 | url: 'https://www.nagekar.com/2017/08/privacy.html', 31 | title: 'Privacy - How I Converted', 32 | }, 33 | { 34 | url: 'https://www.nagekar.com/2018/01/jagriti-yatra.html', 35 | title: 'Jagriti Yatra 2017', 36 | }, 37 | { 38 | url: 'https://www.nagekar.com/2017/08/private-cloud-part-2.html', 39 | title: 'Private Cloud Part 2 | Encrypted Storage With NextCloud', 40 | }, 41 | { 42 | url: 'https://www.nagekar.com/2018/07/eli5-how-https-works.html', 43 | title: 'ELI5 - How HTTPS Works', 44 | }, 45 | ]; 46 | 47 | let post_html = []; 48 | 49 | for(let post of posts) { 50 | 51 | let tags; 52 | 53 | if(post.tags) { 54 | tags = post.tags.map(tag => { 55 | return `${tag}` 56 | }) 57 | } 58 | 59 | let post_template = ` 60 |
61 | 62 | 67 | 68 | 71 |
72 | `; 73 | 74 | post_html.push(post_template); 75 | } 76 | 77 | // for the more posts link 78 | let post_template = ` 79 |
80 | 81 | 86 | 87 | 90 |
91 | `; 92 | 93 | post_html.push(post_template); 94 | 95 | $('#rss-feeds').html(post_html); 96 | 97 | } 98 | 99 | function blog_link_click(url) { 100 | window.location = url; 101 | } -------------------------------------------------------------------------------- /assets/js/projects.js: -------------------------------------------------------------------------------- 1 | $(document).ready(() => { 2 | render_projects('featured'); 3 | }) 4 | 5 | 6 | let render_projects = (slug) => { 7 | let projects_area = $('.projects-wrapper'); 8 | 9 | $('.white-button').removeClass('white-button-hover'); 10 | $(`#${slug}`).addClass('white-button-hover'); 11 | 12 | let projects_obj = [ 13 | { 14 | image: 'assets/images/mentors.jpg', 15 | link: 'https://github.com/abhn/Mporter', 16 | title: 'Mporter', 17 | demo: 'https://mporter.co', 18 | technologies: ['Flask', 'Celery', 'Python'], 19 | description: "Flask web application for easy reporting updates to one's mentor. Multi-user support, easy to deploy and use.", 20 | categories: ['featured', 'webdev'] 21 | }, 22 | { 23 | image: 'assets/images/mobile-landscape.jpg', 24 | link: 'https://github.com/abhn/Wall-E', 25 | title: 'Wall-E', 26 | demo: 'http://wall-e-jekyll.github.io/', 27 | technologies: ['Semantic UI', 'Jekyll'], 28 | description: "A modern Jekyll theme with grid frontpage, beautiful typography, mobile responsive, made with Semantic UI.", 29 | categories: ['featured', 'webdev'] 30 | }, 31 | { 32 | image: 'assets/images/collage.jpg', 33 | link: 'https://github.com/abhn/Marvel', 34 | title: 'Marvel', 35 | demo: false, 36 | technologies: ['Android', 'OpenCV'], 37 | description: "Attendance marking tool that uses face recognition for marking attendance and firebase for tracking and analytics.", 38 | categories: ['featured', 'native'] 39 | }, 40 | { 41 | image: 'assets/images/mpw.jpg', 42 | link: 'https://github.com/abhn/mpw', 43 | title: 'Master Password', 44 | demo: 'https://www.nagekar.com/mpw', 45 | technologies: ['Semantic UI', 'CSS3'], 46 | description: "Master Password is an ingenious password solution that makes your passwords truly impossible to lose.", 47 | categories: ['featured', 'security'] 48 | }, 49 | { 50 | image: 'assets/images/social-share-count.jpeg', 51 | link: 'https://github.com/abhn/Social-Share-Counts', 52 | title: 'Social Share Count', 53 | demo: false, 54 | technologies: ['Python'], 55 | description: "Ever wondered how many times a URL has been shared on popular social networks?", 56 | categories: ['native'] 57 | }, 58 | { 59 | image: 'assets/images/data-destroyer.png', 60 | link: 'https://github.com/abhn/data-destroyer-gui', 61 | title: 'Data Destroyer', 62 | demo: false, 63 | technologies: ['C++', 'Qt'], 64 | description: "Native GUI wrapper for GNU coreutils tool 'dd'", 65 | categories: ['native'] 66 | }, 67 | { 68 | image: 'assets/images/raspberry-pi-monitor.png', 69 | link: 'https://github.com/abhn/RPi-Status-Monitor', 70 | title: 'Raspberry Pi Monitor', 71 | demo: false, 72 | technologies: ['python', 'flask'], 73 | description: "Web based status monitor/smart mirror, displays system stats, weather and more.", 74 | categories: ['webdev', 'diy'] 75 | }, 76 | { 77 | image: 'assets/images/s3scan.png', 78 | link: 'https://github.com/abhn/S3Scan', 79 | title: 'S3Scan', 80 | demo: false, 81 | technologies: ['python'], 82 | description: "Automate crawling of a website and find publicly open S3 buckets for takeover.", 83 | categories: ['native', 'security'] 84 | }, 85 | { 86 | image: 'assets/images/elementary.png', 87 | link: 'https://github.com/abhn/Elementary', 88 | title: 'Elementary', 89 | demo: 'https://elementary-jekyll.github.io/', 90 | technologies: ['Jekyll', 'CSS3'], 91 | description: "Elementary is a zero Javascript and minimal CSS ultra lightweight Jekyll theme for those of you who love simplicity.", 92 | categories: ['webdev'] 93 | }, 94 | { 95 | image: 'assets/images/soot-spirits.png', 96 | link: 'https://github.com/abhn/Soot-Spirits', 97 | title: 'Soot Spirits', 98 | demo: 'https://sootspirits.github.io', 99 | technologies: ['Jekyll', 'CSS3'], 100 | description: "A simple responsive two column Jekyll theme. Great for personal blog and basic portfolio website.", 101 | categories: ['webdev'] 102 | }, 103 | { 104 | image: 'assets/images/python-chat.png', 105 | link: 'https://www.nagekar.com/2014/12/lan-group-messenger-in-python.html', 106 | title: 'Terminal Group Chat', 107 | demo: false, 108 | technologies: ['Python', 'Sockets'], 109 | description: "Simple terminal group chat based on native sockets using Python.", 110 | categories: ['native'] 111 | }, 112 | { 113 | image: 'assets/images/old-lcd.jpg', 114 | link: 'https://www.nagekar.com/2018/05/reusing-old-laptop-lcd-panel.html', 115 | title: 'Reusing Old LCD Panel', 116 | demo: false, 117 | technologies: ['DIY'], 118 | description: "Reusing a dead laptop's LCD panel as a secondary monitor.", 119 | categories: ['diy'] 120 | }, 121 | { 122 | image: 'assets/images/nextcloud-enc.png', 123 | link: 'https://www.nagekar.com/2017/08/private-cloud-part-2.html', 124 | title: 'Encrypted Self-Hosted Cloud', 125 | demo: false, 126 | technologies: ['NextCloud', 'GnuPG'], 127 | description: "Self hosted encrypted cloud setup with Nextcloud and GnuPG.", 128 | categories: ['diy', 'security'] 129 | }, 130 | { 131 | image: 'assets/images/google-cloud-backup.png', 132 | link: 'https://www.nagekar.com/2018/05/encrypted-backup-with-duplicity.html', 133 | title: 'Encrypted Backups - Google Cloud', 134 | demo: false, 135 | technologies: ['NextCloud', 'Duplicity'], 136 | description: "Create automated encrypted incremental backups of data. Sync everything securely to Google Cloud.", 137 | categories: ['diy', 'security'] 138 | }, 139 | { 140 | image: 'assets/images/pi-cloud.jpg', 141 | link: 'https://www.nagekar.com/2016/01/how-to-private-local-cloud-using-raspberrypi.html', 142 | title: 'Local Cloud - Raspberry Pi', 143 | demo: false, 144 | technologies: ['FTP', 'DIY'], 145 | description: "Host a local cloud server with a Raspberry Pi and a spare hard disk. Access data instantaneously on any device on the network.", 146 | categories: ['diy'] 147 | }, 148 | { 149 | image: 'assets/images/koalamate.png', 150 | link: 'https://github.com/abhn/koalamate', 151 | title: 'Koalamate', 152 | demo: false, 153 | technologies: ['Electron', 'Javascript'], 154 | description: "A cross-platform desktop application that serves as a Wolfram Alpha query place and notes taker.", 155 | categories: ['native'] 156 | }, 157 | ] 158 | 159 | let projects = []; 160 | if(slug == 'all') { 161 | projects = projects_obj.map(project_mapper); 162 | } 163 | else { 164 | projects = projects_obj.filter(project => project.categories.includes(slug)).map(project_mapper); 165 | } 166 | projects_area.hide().html(projects).fadeIn(); 167 | } 168 | 169 | let project_mapper = project => { 170 | return ` 171 |
172 | 173 |
174 | 175 | ${project.image ? 176 | `
177 | 178 | image 179 | 180 |
` 181 | : ''} 182 | 183 | 184 |
185 | 186 | 191 | 192 | 193 |
194 | ${project.technologies.map(tech => 195 | `${tech}` 196 | ).join('')} 197 |
198 | 199 |
200 |
201 |
202 | ` 203 | } 204 | 205 | let selected = (slug) => { 206 | render_projects(slug); 207 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: Abhishek Nagekar 4 | --- -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "typeAcquisition": { 3 | "include": [ 4 | "jquery", 5 | "lodash" 6 | ] 7 | } 8 | 9 | } -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: -------------------------------------------------------------------------------- /tmp/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/fff34e5e7601d4d65f6ef8e0a1f6013296a3e33c/tmp/screenshot.jpg -------------------------------------------------------------------------------- /vendor/css/font-awesome.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} 5 | -------------------------------------------------------------------------------- /vendor/css/hint.base.min.css: -------------------------------------------------------------------------------- 1 | /*! Hint.css (base version) - v2.5.0 - 2017-04-23 2 | * http://kushagragour.in/lab/hint/ 3 | * Copyright (c) 2017 Kushagra Gour */ 4 | 5 | [class*=hint--]{position:relative;display:inline-block}[class*=hint--]:after,[class*=hint--]:before{position:absolute;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);transform:translate3d(0,0,0);visibility:hidden;opacity:0;z-index:1000000;pointer-events:none;-webkit-transition:.3s ease;-moz-transition:.3s ease;transition:.3s ease;-webkit-transition-delay:0s;-moz-transition-delay:0s;transition-delay:0s}[class*=hint--]:hover:after,[class*=hint--]:hover:before{visibility:visible;opacity:1;-webkit-transition-delay:.1s;-moz-transition-delay:.1s;transition-delay:.1s}[class*=hint--]:before{content:'';position:absolute;background:0 0;border:6px solid transparent;z-index:1000001}[class*=hint--]:after{background:#383838;color:#fff;padding:8px 10px;font-size:12px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;line-height:12px;white-space:nowrap}[class*=hint--][aria-label]:after{content:attr(aria-label)}[class*=hint--][data-hint]:after{content:attr(data-hint)}[aria-label='']:after,[aria-label='']:before,[data-hint='']:after,[data-hint='']:before{display:none!important}.hint--top-left:before,.hint--top-right:before,.hint--top:before{border-top-color:#383838}.hint--bottom-left:before,.hint--bottom-right:before,.hint--bottom:before{border-bottom-color:#383838}.hint--top:after,.hint--top:before{bottom:100%;left:50%}.hint--top:before{margin-bottom:-11px;left:calc(50% - 6px)}.hint--top:after{-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);transform:translateX(-50%)}.hint--top:hover:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--top:hover:after{-webkit-transform:translateX(-50%) translateY(-8px);-moz-transform:translateX(-50%) translateY(-8px);transform:translateX(-50%) translateY(-8px)}.hint--bottom:after,.hint--bottom:before{top:100%;left:50%}.hint--bottom:before{margin-top:-11px;left:calc(50% - 6px)}.hint--bottom:after{-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);transform:translateX(-50%)}.hint--bottom:hover:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--bottom:hover:after{-webkit-transform:translateX(-50%) translateY(8px);-moz-transform:translateX(-50%) translateY(8px);transform:translateX(-50%) translateY(8px)}.hint--right:before{border-right-color:#383838;margin-left:-11px;margin-bottom:-6px}.hint--right:after{margin-bottom:-14px}.hint--right:after,.hint--right:before{left:100%;bottom:50%}.hint--right:hover:after,.hint--right:hover:before{-webkit-transform:translateX(8px);-moz-transform:translateX(8px);transform:translateX(8px)}.hint--left:before{border-left-color:#383838;margin-right:-11px;margin-bottom:-6px}.hint--left:after{margin-bottom:-14px}.hint--left:after,.hint--left:before{right:100%;bottom:50%}.hint--left:hover:after,.hint--left:hover:before{-webkit-transform:translateX(-8px);-moz-transform:translateX(-8px);transform:translateX(-8px)}.hint--top-left:after,.hint--top-left:before{bottom:100%;left:50%}.hint--top-left:before{margin-bottom:-11px;left:calc(50% - 6px)}.hint--top-left:after{-webkit-transform:translateX(-100%);-moz-transform:translateX(-100%);transform:translateX(-100%);margin-left:12px}.hint--top-left:hover:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--top-left:hover:after{-webkit-transform:translateX(-100%) translateY(-8px);-moz-transform:translateX(-100%) translateY(-8px);transform:translateX(-100%) translateY(-8px)}.hint--top-right:after,.hint--top-right:before{bottom:100%;left:50%}.hint--top-right:before{margin-bottom:-11px;left:calc(50% - 6px)}.hint--top-right:after{-webkit-transform:translateX(0);-moz-transform:translateX(0);transform:translateX(0);margin-left:-12px}.hint--top-right:hover:after,.hint--top-right:hover:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--bottom-left:after,.hint--bottom-left:before{top:100%;left:50%}.hint--bottom-left:before{margin-top:-11px;left:calc(50% - 6px)}.hint--bottom-left:after{-webkit-transform:translateX(-100%);-moz-transform:translateX(-100%);transform:translateX(-100%);margin-left:12px}.hint--bottom-left:hover:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--bottom-left:hover:after{-webkit-transform:translateX(-100%) translateY(8px);-moz-transform:translateX(-100%) translateY(8px);transform:translateX(-100%) translateY(8px)}.hint--bottom-right:after,.hint--bottom-right:before{top:100%;left:50%}.hint--bottom-right:before{margin-top:-11px;left:calc(50% - 6px)}.hint--bottom-right:after{-webkit-transform:translateX(0);-moz-transform:translateX(0);transform:translateX(0);margin-left:-12px}.hint--bottom-right:hover:after,.hint--bottom-right:hover:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--large:after,.hint--medium:after,.hint--small:after{white-space:normal;line-height:1.4em;word-wrap:break-word}.hint--small:after{width:80px}.hint--medium:after{width:150px}.hint--large:after{width:300px}.hint--always:after,.hint--always:before{opacity:1;visibility:visible}.hint--always.hint--top:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--always.hint--top:after{-webkit-transform:translateX(-50%) translateY(-8px);-moz-transform:translateX(-50%) translateY(-8px);transform:translateX(-50%) translateY(-8px)}.hint--always.hint--top-left:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--always.hint--top-left:after{-webkit-transform:translateX(-100%) translateY(-8px);-moz-transform:translateX(-100%) translateY(-8px);transform:translateX(-100%) translateY(-8px)}.hint--always.hint--top-right:after,.hint--always.hint--top-right:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--always.hint--bottom:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--always.hint--bottom:after{-webkit-transform:translateX(-50%) translateY(8px);-moz-transform:translateX(-50%) translateY(8px);transform:translateX(-50%) translateY(8px)}.hint--always.hint--bottom-left:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--always.hint--bottom-left:after{-webkit-transform:translateX(-100%) translateY(8px);-moz-transform:translateX(-100%) translateY(8px);transform:translateX(-100%) translateY(8px)}.hint--always.hint--bottom-right:after,.hint--always.hint--bottom-right:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--always.hint--left:after,.hint--always.hint--left:before{-webkit-transform:translateX(-8px);-moz-transform:translateX(-8px);transform:translateX(-8px)}.hint--always.hint--right:after,.hint--always.hint--right:before{-webkit-transform:translateX(8px);-moz-transform:translateX(8px);transform:translateX(8px)} -------------------------------------------------------------------------------- /vendor/css/normalize.css: -------------------------------------------------------------------------------- 1 | /*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none} 2 | /*# sourceMappingURL=normalize.min.css.map */ -------------------------------------------------------------------------------- /vendor/css/normalize.min.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["normalize.css"],"names":[],"mappings":"AAAA,4EAUA,KACE,YAAa,KACb,yBAA0B,KAU5B,KACE,OAAQ,EAQV,GACE,UAAW,IACX,OAAQ,MAAO,EAWjB,GACE,WAAY,YACZ,OAAQ,EACR,SAAU,QAQZ,IACE,YAAa,SAAS,CAAE,UACxB,UAAW,IAUb,EACE,iBAAkB,YAQpB,YACE,cAAe,KACf,gBAAiB,UACjB,gBAAiB,UAAU,OAO7B,EACA,OACE,YAAa,OAQf,KACA,IACA,KACE,YAAa,SAAS,CAAE,UACxB,UAAW,IAOb,MACE,UAAW,IAQb,IACA,IACE,UAAW,IACX,YAAa,EACb,SAAU,SACV,eAAgB,SAGlB,IACE,OAAQ,OAGV,IACE,IAAK,MAUP,IACE,aAAc,KAWhB,OACA,MACA,SACA,OACA,SACE,YAAa,QACb,UAAW,KACX,YAAa,KACb,OAAQ,EAQV,OACA,MACE,SAAU,QAQZ,OACA,OACE,eAAgB,KAQlB,cACA,aACA,cAHA,OAIE,mBAAoB,OAQtB,gCACA,+BACA,gCAHA,yBAIE,aAAc,KACd,QAAS,EAQX,6BACA,4BACA,6BAHA,sBAIE,QAAS,IAAI,OAAO,WAOtB,SACE,QAAS,MAAO,MAAO,OAUzB,OACE,WAAY,WACZ,MAAO,QACP,QAAS,MACT,UAAW,KACX,QAAS,EACT,YAAa,OAOf,SACE,eAAgB,SAOlB,SACE,SAAU,KAQZ,gBACA,aACE,WAAY,WACZ,QAAS,EAOX,yCACA,yCACE,OAAQ,KAQV,cACE,mBAAoB,UACpB,eAAgB,KAOlB,yCACE,mBAAoB,KAQtB,6BACE,mBAAoB,OACpB,KAAM,QAUR,QACE,QAAS,MAOX,QACE,QAAS,UAUX,SACE,QAAS,KAOX,SACE,QAAS"} -------------------------------------------------------------------------------- /vendor/css/semi-transparent-buttons.css: -------------------------------------------------------------------------------- 1 | .semi-transparent-button { 2 | display: block; 3 | box-sizing: border-box; 4 | margin: 0 auto; 5 | padding: 8px; 6 | max-width: 160px; 7 | min-width: 120px; 8 | background: transparent; /* fallback color for old browsers */ 9 | border-radius: 2px; 10 | color: #fff; 11 | text-align: center; 12 | text-decoration: none; 13 | letter-spacing: 1px; 14 | transition: all 0.1s ease-out; 15 | } 16 | .semi-transparent-button:hover, 17 | .semi-transparent-button:active { 18 | background: #fff; 19 | color: #444; 20 | transition: all 0.1s ease-in; 21 | } 22 | .semi-transparent:focus { 23 | outline: none; 24 | } 25 | 26 | .is-blue { 27 | background: #1e348e; /* fallback color for old browsers */ 28 | background: rgba(30, 52, 142, 0.5); 29 | } 30 | .is-blue:hover, 31 | .is-blue:focus, 32 | .is-blue:active { 33 | background: #1e348e; /* fallback color for old browsers */ 34 | background: rgb(30, 52, 142); 35 | color: #fff; 36 | } 37 | 38 | .with-border { 39 | border: 1px solid #fff; 40 | } 41 | 42 | .white-button { 43 | color: #222; 44 | border: 1px solid #222; 45 | min-width: 110px; 46 | } 47 | 48 | .white-button:hover { 49 | color: #fff; 50 | background: #222; 51 | cursor: pointer; 52 | } 53 | 54 | .white-button-hover { 55 | color: #fff; 56 | background: #222; 57 | cursor: pointer; 58 | } -------------------------------------------------------------------------------- /vendor/js/flexibility.js: -------------------------------------------------------------------------------- 1 | !function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var t;t="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,t.flexibility=e()}}(function(){return function e(t,r,l){function n(f,i){if(!r[f]){if(!t[f]){var s="function"==typeof require&&require;if(!i&&s)return s(f,!0);if(o)return o(f,!0);var a=new Error("Cannot find module '"+f+"'");throw a.code="MODULE_NOT_FOUND",a}var c=r[f]={exports:{}};t[f][0].call(c.exports,function(e){var r=t[f][1][e];return n(r?r:e)},c,c.exports,e,t,r,l)}return r[f].exports}for(var o="function"==typeof require&&require,f=0;f1&&"flex-start"===e.style.alignContent)for(t=0;l=e.lines[++n];)l.crossStart=t,t+=l.cross;else if(e.lines.length>1&&"flex-end"===e.style.alignContent)for(t=e.flexStyle.crossSpace;l=e.lines[++n];)l.crossStart=t,t+=l.cross;else if(e.lines.length>1&&"center"===e.style.alignContent)for(t=e.flexStyle.crossSpace/2;l=e.lines[++n];)l.crossStart=t,t+=l.cross;else if(e.lines.length>1&&"space-between"===e.style.alignContent)for(r=e.flexStyle.crossSpace/(e.lines.length-1),t=0;l=e.lines[++n];)l.crossStart=t,t+=l.cross+r;else if(e.lines.length>1&&"space-around"===e.style.alignContent)for(r=2*e.flexStyle.crossSpace/(2*e.lines.length),t=r/2;l=e.lines[++n];)l.crossStart=t,t+=l.cross+r;else for(r=e.flexStyle.crossSpace/e.lines.length,t=e.flexStyle.crossInnerBefore;l=e.lines[++n];)l.crossStart=t,l.cross+=r,t+=l.cross}},{}],2:[function(e,t,r){t.exports=function(e){for(var t,r=-1;line=e.lines[++r];)for(t=-1;child=line.children[++t];){var l=child.style.alignSelf;"auto"===l&&(l=e.style.alignItems),"flex-start"===l?child.flexStyle.crossStart=line.crossStart:"flex-end"===l?child.flexStyle.crossStart=line.crossStart+line.cross-child.flexStyle.crossOuter:"center"===l?child.flexStyle.crossStart=line.crossStart+(line.cross-child.flexStyle.crossOuter)/2:(child.flexStyle.crossStart=line.crossStart,child.flexStyle.crossOuter=line.cross,child.flexStyle.cross=child.flexStyle.crossOuter-child.flexStyle.crossBefore-child.flexStyle.crossAfter)}}},{}],3:[function(e,t,r){t.exports=function l(e,l){var t="row"===l||"row-reverse"===l,r=e.mainAxis;if(r){var n=t&&"inline"===r||!t&&"block"===r;n||(e.flexStyle={main:e.flexStyle.cross,cross:e.flexStyle.main,mainOffset:e.flexStyle.crossOffset,crossOffset:e.flexStyle.mainOffset,mainBefore:e.flexStyle.crossBefore,mainAfter:e.flexStyle.crossAfter,crossBefore:e.flexStyle.mainBefore,crossAfter:e.flexStyle.mainAfter,mainInnerBefore:e.flexStyle.crossInnerBefore,mainInnerAfter:e.flexStyle.crossInnerAfter,crossInnerBefore:e.flexStyle.mainInnerBefore,crossInnerAfter:e.flexStyle.mainInnerAfter,mainBorderBefore:e.flexStyle.crossBorderBefore,mainBorderAfter:e.flexStyle.crossBorderAfter,crossBorderBefore:e.flexStyle.mainBorderBefore,crossBorderAfter:e.flexStyle.mainBorderAfter})}else t?e.flexStyle={main:e.style.width,cross:e.style.height,mainOffset:e.style.offsetWidth,crossOffset:e.style.offsetHeight,mainBefore:e.style.marginLeft,mainAfter:e.style.marginRight,crossBefore:e.style.marginTop,crossAfter:e.style.marginBottom,mainInnerBefore:e.style.paddingLeft,mainInnerAfter:e.style.paddingRight,crossInnerBefore:e.style.paddingTop,crossInnerAfter:e.style.paddingBottom,mainBorderBefore:e.style.borderLeftWidth,mainBorderAfter:e.style.borderRightWidth,crossBorderBefore:e.style.borderTopWidth,crossBorderAfter:e.style.borderBottomWidth}:e.flexStyle={main:e.style.height,cross:e.style.width,mainOffset:e.style.offsetHeight,crossOffset:e.style.offsetWidth,mainBefore:e.style.marginTop,mainAfter:e.style.marginBottom,crossBefore:e.style.marginLeft,crossAfter:e.style.marginRight,mainInnerBefore:e.style.paddingTop,mainInnerAfter:e.style.paddingBottom,crossInnerBefore:e.style.paddingLeft,crossInnerAfter:e.style.paddingRight,mainBorderBefore:e.style.borderTopWidth,mainBorderAfter:e.style.borderBottomWidth,crossBorderBefore:e.style.borderLeftWidth,crossBorderAfter:e.style.borderRightWidth},"content-box"===e.style.boxSizing&&("number"==typeof e.flexStyle.main&&(e.flexStyle.main+=e.flexStyle.mainInnerBefore+e.flexStyle.mainInnerAfter+e.flexStyle.mainBorderBefore+e.flexStyle.mainBorderAfter),"number"==typeof e.flexStyle.cross&&(e.flexStyle.cross+=e.flexStyle.crossInnerBefore+e.flexStyle.crossInnerAfter+e.flexStyle.crossBorderBefore+e.flexStyle.crossBorderAfter));e.mainAxis=t?"inline":"block",e.crossAxis=t?"block":"inline","number"==typeof e.style.flexBasis&&(e.flexStyle.main=e.style.flexBasis+e.flexStyle.mainInnerBefore+e.flexStyle.mainInnerAfter+e.flexStyle.mainBorderBefore+e.flexStyle.mainBorderAfter),e.flexStyle.mainOuter=e.flexStyle.main,e.flexStyle.crossOuter=e.flexStyle.cross,"auto"===e.flexStyle.mainOuter&&(e.flexStyle.mainOuter=e.flexStyle.mainOffset),"auto"===e.flexStyle.crossOuter&&(e.flexStyle.crossOuter=e.flexStyle.crossOffset),"number"==typeof e.flexStyle.mainBefore&&(e.flexStyle.mainOuter+=e.flexStyle.mainBefore),"number"==typeof e.flexStyle.mainAfter&&(e.flexStyle.mainOuter+=e.flexStyle.mainAfter),"number"==typeof e.flexStyle.crossBefore&&(e.flexStyle.crossOuter+=e.flexStyle.crossBefore),"number"==typeof e.flexStyle.crossAfter&&(e.flexStyle.crossOuter+=e.flexStyle.crossAfter)}},{}],4:[function(e,t,r){var l=e("../reduce");t.exports=function(e){if(e.mainSpace>0){var t=l(e.children,function(e,t){return e+parseFloat(t.style.flexGrow)},0);t>0&&(e.main=l(e.children,function(r,l){return"auto"===l.flexStyle.main?l.flexStyle.main=l.flexStyle.mainOffset+parseFloat(l.style.flexGrow)/t*e.mainSpace:l.flexStyle.main+=parseFloat(l.style.flexGrow)/t*e.mainSpace,l.flexStyle.mainOuter=l.flexStyle.main+l.flexStyle.mainBefore+l.flexStyle.mainAfter,r+l.flexStyle.mainOuter},0),e.mainSpace=0)}}},{"../reduce":12}],5:[function(e,t,r){var l=e("../reduce");t.exports=function(e){if(e.mainSpace<0){var t=l(e.children,function(e,t){return e+parseFloat(t.style.flexShrink)},0);t>0&&(e.main=l(e.children,function(r,l){return l.flexStyle.main+=parseFloat(l.style.flexShrink)/t*e.mainSpace,l.flexStyle.mainOuter=l.flexStyle.main+l.flexStyle.mainBefore+l.flexStyle.mainAfter,r+l.flexStyle.mainOuter},0),e.mainSpace=0)}}},{"../reduce":12}],6:[function(e,t,r){var l=e("../reduce");t.exports=function(e){var t;e.lines=[t={main:0,cross:0,children:[]}];for(var r,n=-1;r=e.children[++n];)"nowrap"===e.style.flexWrap||0===t.children.length||"auto"===e.flexStyle.main||e.flexStyle.main-e.flexStyle.mainInnerBefore-e.flexStyle.mainInnerAfter-e.flexStyle.mainBorderBefore-e.flexStyle.mainBorderAfter>=t.main+r.flexStyle.mainOuter?(t.main+=r.flexStyle.mainOuter,t.cross=Math.max(t.cross,r.flexStyle.crossOuter)):e.lines.push(t={main:r.flexStyle.mainOuter,cross:r.flexStyle.crossOuter,children:[]}),t.children.push(r);e.flexStyle.mainLines=l(e.lines,function(e,t){return Math.max(e,t.main)},0),e.flexStyle.crossLines=l(e.lines,function(e,t){return e+t.cross},0),"auto"===e.flexStyle.main&&(e.flexStyle.main=Math.max(e.flexStyle.mainOffset,e.flexStyle.mainLines+e.flexStyle.mainInnerBefore+e.flexStyle.mainInnerAfter+e.flexStyle.mainBorderBefore+e.flexStyle.mainBorderAfter)),"auto"===e.flexStyle.cross&&(e.flexStyle.cross=Math.max(e.flexStyle.crossOffset,e.flexStyle.crossLines+e.flexStyle.crossInnerBefore+e.flexStyle.crossInnerAfter+e.flexStyle.crossBorderBefore+e.flexStyle.crossBorderAfter)),e.flexStyle.crossSpace=e.flexStyle.cross-e.flexStyle.crossInnerBefore-e.flexStyle.crossInnerAfter-e.flexStyle.crossBorderBefore-e.flexStyle.crossBorderAfter-e.flexStyle.crossLines,e.flexStyle.mainOuter=e.flexStyle.main+e.flexStyle.mainBefore+e.flexStyle.mainAfter,e.flexStyle.crossOuter=e.flexStyle.cross+e.flexStyle.crossBefore+e.flexStyle.crossAfter}},{"../reduce":12}],7:[function(e,t,r){function l(t){for(var r,l=-1;r=t.children[++l];)e("./flex-direction")(r,t.style.flexDirection);e("./flex-direction")(t,t.style.flexDirection),e("./order")(t),e("./flexbox-lines")(t),e("./align-content")(t),l=-1;for(var n;n=t.lines[++l];)n.mainSpace=t.flexStyle.main-t.flexStyle.mainInnerBefore-t.flexStyle.mainInnerAfter-t.flexStyle.mainBorderBefore-t.flexStyle.mainBorderAfter-n.main,e("./flex-grow")(n),e("./flex-shrink")(n),e("./margin-main")(n),e("./margin-cross")(n),e("./justify-content")(n,t.style.justifyContent,t);e("./align-items")(t)}t.exports=l},{"./align-content":1,"./align-items":2,"./flex-direction":3,"./flex-grow":4,"./flex-shrink":5,"./flexbox-lines":6,"./justify-content":8,"./margin-cross":9,"./margin-main":10,"./order":11}],8:[function(e,t,r){t.exports=function(e,t,r){var l,n,o,f=r.flexStyle.mainInnerBefore,i=-1;if("flex-end"===t)for(l=e.mainSpace,l+=f;o=e.children[++i];)o.flexStyle.mainStart=l,l+=o.flexStyle.mainOuter;else if("center"===t)for(l=e.mainSpace/2,l+=f;o=e.children[++i];)o.flexStyle.mainStart=l,l+=o.flexStyle.mainOuter;else if("space-between"===t)for(n=e.mainSpace/(e.children.length-1),l=0,l+=f;o=e.children[++i];)o.flexStyle.mainStart=l,l+=o.flexStyle.mainOuter+n;else if("space-around"===t)for(n=2*e.mainSpace/(2*e.children.length),l=n/2,l+=f;o=e.children[++i];)o.flexStyle.mainStart=l,l+=o.flexStyle.mainOuter+n;else for(l=0,l+=f;o=e.children[++i];)o.flexStyle.mainStart=l,l+=o.flexStyle.mainOuter}},{}],9:[function(e,t,r){t.exports=function(e){for(var t,r=-1;t=e.children[++r];){var l=0;"auto"===t.flexStyle.crossBefore&&++l,"auto"===t.flexStyle.crossAfter&&++l;var n=e.cross-t.flexStyle.crossOuter;"auto"===t.flexStyle.crossBefore&&(t.flexStyle.crossBefore=n/l),"auto"===t.flexStyle.crossAfter&&(t.flexStyle.crossAfter=n/l),"auto"===t.flexStyle.cross?t.flexStyle.crossOuter=t.flexStyle.crossOffset+t.flexStyle.crossBefore+t.flexStyle.crossAfter:t.flexStyle.crossOuter=t.flexStyle.cross+t.flexStyle.crossBefore+t.flexStyle.crossAfter}}},{}],10:[function(e,t,r){t.exports=function(e){for(var t,r=0,l=-1;t=e.children[++l];)"auto"===t.flexStyle.mainBefore&&++r,"auto"===t.flexStyle.mainAfter&&++r;if(r>0){for(l=-1;t=e.children[++l];)"auto"===t.flexStyle.mainBefore&&(t.flexStyle.mainBefore=e.mainSpace/r),"auto"===t.flexStyle.mainAfter&&(t.flexStyle.mainAfter=e.mainSpace/r),"auto"===t.flexStyle.main?t.flexStyle.mainOuter=t.flexStyle.mainOffset+t.flexStyle.mainBefore+t.flexStyle.mainAfter:t.flexStyle.mainOuter=t.flexStyle.main+t.flexStyle.mainBefore+t.flexStyle.mainAfter;e.mainSpace=0}}},{}],11:[function(e,t,r){var l=/^(column|row)-reverse$/;t.exports=function(e){e.children.sort(function(e,t){return e.style.order-t.style.order||e.index-t.index}),l.test(e.style.flexDirection)&&e.children.reverse()}},{}],12:[function(e,t,r){function l(e,t,r){for(var l=e.length,n=-1;++n 0) { 88 | scrollable.push(this); 89 | } else { 90 | // if scroll(Top|Left) === 0, nudge the element 1px and see if it moves 91 | el[dir](1); 92 | scrolled = el[dir]() > 0; 93 | 94 | if (scrolled) { 95 | scrollable.push(this); 96 | } 97 | // then put it back, of course 98 | el[dir](0); 99 | } 100 | }); 101 | 102 | if (!scrollable.length) { 103 | this.each(function() { 104 | // If no scrollable elements and has scroll-behavior:smooth because 105 | // "When this property is specified on the root element, it applies to the viewport instead." 106 | // and "The scroll-behavior property of the … body element is *not* propagated to the viewport." 107 | // → https://drafts.csswg.org/cssom-view/#propdef-scroll-behavior 108 | if (this === document.documentElement && $(this).css('scrollBehavior') === 'smooth') { 109 | scrollable = [this]; 110 | } 111 | 112 | // If still no scrollable elements, fall back to , 113 | // if it's in the jQuery collection 114 | // (doing this because Safari sets scrollTop async, 115 | // so can't set it to 1 and immediately get the value.) 116 | if (!scrollable.length && this.nodeName === 'BODY') { 117 | scrollable = [this]; 118 | } 119 | }); 120 | } 121 | 122 | // Use the first scrollable element if we're calling firstScrollable() 123 | if (opts.el === 'first' && scrollable.length > 1) { 124 | scrollable = [scrollable[0]]; 125 | } 126 | 127 | return scrollable; 128 | }; 129 | 130 | var rRelative = /^([\-\+]=)(\d+)/; 131 | 132 | $.fn.extend({ 133 | scrollable: function(dir) { 134 | var scrl = getScrollable.call(this, {dir: dir}); 135 | 136 | return this.pushStack(scrl); 137 | }, 138 | firstScrollable: function(dir) { 139 | var scrl = getScrollable.call(this, {el: 'first', dir: dir}); 140 | 141 | return this.pushStack(scrl); 142 | }, 143 | 144 | smoothScroll: function(options, extra) { 145 | options = options || {}; 146 | 147 | if (options === 'options') { 148 | if (!extra) { 149 | return this.first().data('ssOpts'); 150 | } 151 | 152 | return this.each(function() { 153 | var $this = $(this); 154 | var opts = $.extend($this.data('ssOpts') || {}, extra); 155 | 156 | $(this).data('ssOpts', opts); 157 | }); 158 | } 159 | 160 | var opts = $.extend({}, $.fn.smoothScroll.defaults, options); 161 | 162 | var clickHandler = function(event) { 163 | var escapeSelector = function(str) { 164 | return str.replace(/(:|\.|\/)/g, '\\$1'); 165 | }; 166 | 167 | var link = this; 168 | var $link = $(this); 169 | var thisOpts = $.extend({}, opts, $link.data('ssOpts') || {}); 170 | var exclude = opts.exclude; 171 | var excludeWithin = thisOpts.excludeWithin; 172 | var elCounter = 0; 173 | var ewlCounter = 0; 174 | var include = true; 175 | var clickOpts = {}; 176 | var locationPath = $.smoothScroll.filterPath(location.pathname); 177 | var linkPath = $.smoothScroll.filterPath(link.pathname); 178 | var hostMatch = location.hostname === link.hostname || !link.hostname; 179 | var pathMatch = thisOpts.scrollTarget || (linkPath === locationPath); 180 | var thisHash = escapeSelector(link.hash); 181 | 182 | if (thisHash && !$(thisHash).length) { 183 | include = false; 184 | } 185 | 186 | if (!thisOpts.scrollTarget && (!hostMatch || !pathMatch || !thisHash)) { 187 | include = false; 188 | } else { 189 | while (include && elCounter < exclude.length) { 190 | if ($link.is(escapeSelector(exclude[elCounter++]))) { 191 | include = false; 192 | } 193 | } 194 | 195 | while (include && ewlCounter < excludeWithin.length) { 196 | if ($link.closest(excludeWithin[ewlCounter++]).length) { 197 | include = false; 198 | } 199 | } 200 | } 201 | 202 | if (include) { 203 | if (thisOpts.preventDefault) { 204 | event.preventDefault(); 205 | } 206 | 207 | $.extend(clickOpts, thisOpts, { 208 | scrollTarget: thisOpts.scrollTarget || thisHash, 209 | link: link 210 | }); 211 | 212 | $.smoothScroll(clickOpts); 213 | } 214 | }; 215 | 216 | if (options.delegateSelector !== null) { 217 | this 218 | .off('click.smoothscroll', options.delegateSelector) 219 | .on('click.smoothscroll', options.delegateSelector, clickHandler); 220 | } else { 221 | this 222 | .off('click.smoothscroll') 223 | .on('click.smoothscroll', clickHandler); 224 | } 225 | 226 | return this; 227 | } 228 | }); 229 | 230 | var getExplicitOffset = function(val) { 231 | var explicit = {relative: ''}; 232 | var parts = typeof val === 'string' && rRelative.exec(val); 233 | 234 | if (typeof val === 'number') { 235 | explicit.px = val; 236 | } else if (parts) { 237 | explicit.relative = parts[1]; 238 | explicit.px = parseFloat(parts[2]) || 0; 239 | } 240 | 241 | return explicit; 242 | }; 243 | 244 | var onAfterScroll = function(opts) { 245 | var $tgt = $(opts.scrollTarget); 246 | 247 | if (opts.autoFocus && $tgt.length) { 248 | $tgt[0].focus(); 249 | 250 | if (!$tgt.is(document.activeElement)) { 251 | $tgt.prop({tabIndex: -1}); 252 | $tgt[0].focus(); 253 | } 254 | } 255 | 256 | opts.afterScroll.call(opts.link, opts); 257 | }; 258 | 259 | $.smoothScroll = function(options, px) { 260 | if (options === 'options' && typeof px === 'object') { 261 | return $.extend(optionOverrides, px); 262 | } 263 | var opts, $scroller, speed, delta; 264 | var explicitOffset = getExplicitOffset(options); 265 | var scrollTargetOffset = {}; 266 | var scrollerOffset = 0; 267 | var offPos = 'offset'; 268 | var scrollDir = 'scrollTop'; 269 | var aniProps = {}; 270 | var aniOpts = {}; 271 | 272 | if (explicitOffset.px) { 273 | opts = $.extend({link: null}, $.fn.smoothScroll.defaults, optionOverrides); 274 | } else { 275 | opts = $.extend({link: null}, $.fn.smoothScroll.defaults, options || {}, optionOverrides); 276 | 277 | if (opts.scrollElement) { 278 | offPos = 'position'; 279 | 280 | if (opts.scrollElement.css('position') === 'static') { 281 | opts.scrollElement.css('position', 'relative'); 282 | } 283 | } 284 | 285 | if (px) { 286 | explicitOffset = getExplicitOffset(px); 287 | } 288 | } 289 | 290 | scrollDir = opts.direction === 'left' ? 'scrollLeft' : scrollDir; 291 | 292 | if (opts.scrollElement) { 293 | $scroller = opts.scrollElement; 294 | 295 | if (!explicitOffset.px && !(/^(?:HTML|BODY)$/).test($scroller[0].nodeName)) { 296 | scrollerOffset = $scroller[scrollDir](); 297 | } 298 | } else { 299 | $scroller = $('html, body').firstScrollable(opts.direction); 300 | } 301 | 302 | // beforeScroll callback function must fire before calculating offset 303 | opts.beforeScroll.call($scroller, opts); 304 | 305 | scrollTargetOffset = explicitOffset.px ? explicitOffset : { 306 | relative: '', 307 | px: ($(opts.scrollTarget)[offPos]() && $(opts.scrollTarget)[offPos]()[opts.direction]) || 0 308 | }; 309 | 310 | aniProps[scrollDir] = scrollTargetOffset.relative + (scrollTargetOffset.px + scrollerOffset + opts.offset); 311 | 312 | speed = opts.speed; 313 | 314 | // automatically calculate the speed of the scroll based on distance / coefficient 315 | if (speed === 'auto') { 316 | 317 | // $scroller[scrollDir]() is position before scroll, aniProps[scrollDir] is position after 318 | // When delta is greater, speed will be greater. 319 | delta = Math.abs(aniProps[scrollDir] - $scroller[scrollDir]()); 320 | 321 | // Divide the delta by the coefficient 322 | speed = delta / opts.autoCoefficient; 323 | } 324 | 325 | aniOpts = { 326 | duration: speed, 327 | easing: opts.easing, 328 | complete: function() { 329 | onAfterScroll(opts); 330 | } 331 | }; 332 | 333 | if (opts.step) { 334 | aniOpts.step = opts.step; 335 | } 336 | 337 | if ($scroller.length) { 338 | $scroller.stop().animate(aniProps, aniOpts); 339 | } else { 340 | onAfterScroll(opts); 341 | } 342 | }; 343 | 344 | $.smoothScroll.version = version; 345 | $.smoothScroll.filterPath = function(string) { 346 | string = string || ''; 347 | 348 | return string 349 | .replace(/^\//, '') 350 | .replace(/(?:index|default).[a-zA-Z]{3,4}$/, '') 351 | .replace(/\/$/, ''); 352 | }; 353 | 354 | // default options 355 | $.fn.smoothScroll.defaults = defaults; 356 | 357 | })); 358 | 359 | --------------------------------------------------------------------------------