├── events └── assets │ ├── .DS_Store │ ├── img │ ├── logo.png │ ├── logo.psd │ ├── .DS_Store │ ├── art │ │ ├── a1.jpg │ │ ├── a2.jpg │ │ └── .DS_Store │ ├── location.png │ ├── about │ │ ├── .DS_Store │ │ ├── about.jpg │ │ ├── img1.jpg │ │ ├── img2.jpg │ │ └── img3.jpg │ ├── blog │ │ ├── .DS_Store │ │ ├── img-1.jpg │ │ ├── img-2.jpg │ │ ├── img-3.jpg │ │ ├── mern-app.jpg │ │ ├── sabe-vue.png │ │ ├── aman-article.png │ │ └── Samantha-Ming.png │ ├── slider │ │ ├── .DS_Store │ │ ├── slide1.jpg │ │ ├── slide2.jpg │ │ └── slide3.jpg │ ├── team │ │ ├── .DS_Store │ │ ├── team-01.jpg │ │ ├── team-02.jpg │ │ ├── team-03.jpg │ │ ├── team-04.jpg │ │ ├── team-05.jpg │ │ └── team-06.jpg │ ├── gallery │ │ ├── .DS_Store │ │ ├── img-1.jpg │ │ ├── img-2.jpg │ │ ├── img-3.jpg │ │ ├── img-4.jpg │ │ ├── img-5.jpg │ │ └── img-6.jpg │ ├── speaker │ │ ├── .DS_Store │ │ ├── speakers-1.jpg │ │ ├── speakers-2.jpg │ │ ├── speakers-3.jpg │ │ └── speakers-4.jpg │ ├── sponsors │ │ ├── .DS_Store │ │ ├── hi-rez.png │ │ ├── logo-01.png │ │ ├── logo-02.png │ │ ├── logo-03.png │ │ ├── logo-04.png │ │ ├── nordvpn.png │ │ ├── sponsor.png │ │ ├── Get-funded.png │ │ ├── hackernoon.png │ │ ├── maker-log.png │ │ ├── codebuddies.png │ │ ├── help-my-dev.png │ │ ├── maker-rocks.png │ │ └── product-hunt.png │ ├── background │ │ ├── .DS_Store │ │ ├── bg-1.jpg │ │ ├── bg-pricing.jpg │ │ └── countdown.png │ └── testimonial │ │ ├── .DS_Store │ │ ├── img1.png │ │ ├── img2.png │ │ ├── img3.png │ │ ├── img4.png │ │ ├── img5.png │ │ └── img6.png │ ├── js │ ├── .DS_Store │ ├── contact-form-script.min.js │ ├── main.js │ ├── jquery.countdown.min.js │ ├── jquery.easing.min.js │ ├── form-validator.min.js │ ├── jquery.nav.js │ ├── map.js │ ├── wow.js │ ├── nivo-lightbox.js │ ├── popper.min.js │ └── jquery.slicknav.js │ ├── css │ ├── .DS_Store │ ├── colors │ │ ├── .DS_Store │ │ └── blue.css │ ├── slicknav.css │ ├── nivo-lightbox.css │ ├── responsive.css │ └── responsive.map │ ├── fonts │ ├── .DS_Store │ ├── LineIcons.eot │ ├── LineIcons.ttf │ └── LineIcons.woff │ ├── scss │ ├── .DS_Store │ ├── colors │ │ └── _presets.scss │ ├── _shortcode.scss │ ├── main.scss │ ├── _testimonial.scss │ ├── _countdown.scss │ ├── _portfolio.scss │ ├── _service.scss │ ├── _pricing.scss │ ├── _blog.scss │ ├── _about.scss │ ├── _carousel.scss │ ├── _team.scss │ ├── _footer.scss │ ├── _schedule.scss │ ├── _contact.scss │ ├── _navbar.scss │ ├── responsive.scss │ └── _global.scss │ └── php │ └── form-process.php ├── _assets └── _images │ ├── mockup.png │ ├── 1_0kf59M9bNuEIRNDaj54QvQ.png │ ├── 1_V7TMAzvhW7_cn9FbkKqOcQ.png │ ├── 1__EfUP-q18EfebxPgZ6BCbA.png │ ├── 1__wZhhTstI_DCebB2fK2c5g.png │ └── user-experience.txt ├── career-path └── app │ ├── images │ └── bulma-type-white.png │ ├── js │ └── bulma.js │ └── css │ └── hero.css ├── front-end-dev-path.md ├── .github └── FUNDING.yml └── README.md /events/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/.DS_Store -------------------------------------------------------------------------------- /_assets/_images/mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/_assets/_images/mockup.png -------------------------------------------------------------------------------- /events/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/logo.png -------------------------------------------------------------------------------- /events/assets/img/logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/logo.psd -------------------------------------------------------------------------------- /events/assets/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/js/.DS_Store -------------------------------------------------------------------------------- /events/assets/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/css/.DS_Store -------------------------------------------------------------------------------- /events/assets/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/fonts/.DS_Store -------------------------------------------------------------------------------- /events/assets/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/.DS_Store -------------------------------------------------------------------------------- /events/assets/img/art/a1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/art/a1.jpg -------------------------------------------------------------------------------- /events/assets/img/art/a2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/art/a2.jpg -------------------------------------------------------------------------------- /events/assets/scss/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/scss/.DS_Store -------------------------------------------------------------------------------- /events/assets/img/art/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/art/.DS_Store -------------------------------------------------------------------------------- /events/assets/img/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/location.png -------------------------------------------------------------------------------- /events/assets/css/colors/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/css/colors/.DS_Store -------------------------------------------------------------------------------- /events/assets/fonts/LineIcons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/fonts/LineIcons.eot -------------------------------------------------------------------------------- /events/assets/fonts/LineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/fonts/LineIcons.ttf -------------------------------------------------------------------------------- /events/assets/fonts/LineIcons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/fonts/LineIcons.woff -------------------------------------------------------------------------------- /events/assets/img/about/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/about/.DS_Store -------------------------------------------------------------------------------- /events/assets/img/about/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/about/about.jpg -------------------------------------------------------------------------------- /events/assets/img/about/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/about/img1.jpg -------------------------------------------------------------------------------- /events/assets/img/about/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/about/img2.jpg -------------------------------------------------------------------------------- /events/assets/img/about/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/about/img3.jpg -------------------------------------------------------------------------------- /events/assets/img/blog/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/blog/.DS_Store -------------------------------------------------------------------------------- /events/assets/img/blog/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/blog/img-1.jpg -------------------------------------------------------------------------------- /events/assets/img/blog/img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/blog/img-2.jpg -------------------------------------------------------------------------------- /events/assets/img/blog/img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/blog/img-3.jpg -------------------------------------------------------------------------------- /events/assets/img/slider/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/slider/.DS_Store -------------------------------------------------------------------------------- /events/assets/img/team/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/team/.DS_Store -------------------------------------------------------------------------------- /events/assets/img/team/team-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/team/team-01.jpg -------------------------------------------------------------------------------- /events/assets/img/team/team-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/team/team-02.jpg -------------------------------------------------------------------------------- /events/assets/img/team/team-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/team/team-03.jpg -------------------------------------------------------------------------------- /events/assets/img/team/team-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/team/team-04.jpg -------------------------------------------------------------------------------- /events/assets/img/team/team-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/team/team-05.jpg -------------------------------------------------------------------------------- /events/assets/img/team/team-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/team/team-06.jpg -------------------------------------------------------------------------------- /events/assets/img/blog/mern-app.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/blog/mern-app.jpg -------------------------------------------------------------------------------- /events/assets/img/blog/sabe-vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/blog/sabe-vue.png -------------------------------------------------------------------------------- /events/assets/img/gallery/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/gallery/.DS_Store -------------------------------------------------------------------------------- /events/assets/img/gallery/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/gallery/img-1.jpg -------------------------------------------------------------------------------- /events/assets/img/gallery/img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/gallery/img-2.jpg -------------------------------------------------------------------------------- /events/assets/img/gallery/img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/gallery/img-3.jpg -------------------------------------------------------------------------------- /events/assets/img/gallery/img-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/gallery/img-4.jpg -------------------------------------------------------------------------------- /events/assets/img/gallery/img-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/gallery/img-5.jpg -------------------------------------------------------------------------------- /events/assets/img/gallery/img-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/gallery/img-6.jpg -------------------------------------------------------------------------------- /events/assets/img/slider/slide1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/slider/slide1.jpg -------------------------------------------------------------------------------- /events/assets/img/slider/slide2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/slider/slide2.jpg -------------------------------------------------------------------------------- /events/assets/img/slider/slide3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/slider/slide3.jpg -------------------------------------------------------------------------------- /events/assets/img/speaker/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/speaker/.DS_Store -------------------------------------------------------------------------------- /events/assets/img/sponsors/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/sponsors/.DS_Store -------------------------------------------------------------------------------- /events/assets/img/background/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/background/.DS_Store -------------------------------------------------------------------------------- /events/assets/img/background/bg-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/background/bg-1.jpg -------------------------------------------------------------------------------- /events/assets/img/blog/aman-article.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/blog/aman-article.png -------------------------------------------------------------------------------- /events/assets/img/sponsors/hi-rez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/sponsors/hi-rez.png -------------------------------------------------------------------------------- /events/assets/img/sponsors/logo-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/sponsors/logo-01.png -------------------------------------------------------------------------------- /events/assets/img/sponsors/logo-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/sponsors/logo-02.png -------------------------------------------------------------------------------- /events/assets/img/sponsors/logo-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/sponsors/logo-03.png -------------------------------------------------------------------------------- /events/assets/img/sponsors/logo-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/sponsors/logo-04.png -------------------------------------------------------------------------------- /events/assets/img/sponsors/nordvpn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/sponsors/nordvpn.png -------------------------------------------------------------------------------- /events/assets/img/sponsors/sponsor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/sponsors/sponsor.png -------------------------------------------------------------------------------- /events/assets/img/testimonial/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/testimonial/.DS_Store -------------------------------------------------------------------------------- /events/assets/img/testimonial/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/testimonial/img1.png -------------------------------------------------------------------------------- /events/assets/img/testimonial/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/testimonial/img2.png -------------------------------------------------------------------------------- /events/assets/img/testimonial/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/testimonial/img3.png -------------------------------------------------------------------------------- /events/assets/img/testimonial/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/testimonial/img4.png -------------------------------------------------------------------------------- /events/assets/img/testimonial/img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/testimonial/img5.png -------------------------------------------------------------------------------- /events/assets/img/testimonial/img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/testimonial/img6.png -------------------------------------------------------------------------------- /events/assets/img/blog/Samantha-Ming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/blog/Samantha-Ming.png -------------------------------------------------------------------------------- /events/assets/img/speaker/speakers-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/speaker/speakers-1.jpg -------------------------------------------------------------------------------- /events/assets/img/speaker/speakers-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/speaker/speakers-2.jpg -------------------------------------------------------------------------------- /events/assets/img/speaker/speakers-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/speaker/speakers-3.jpg -------------------------------------------------------------------------------- /events/assets/img/speaker/speakers-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/speaker/speakers-4.jpg -------------------------------------------------------------------------------- /events/assets/img/sponsors/Get-funded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/sponsors/Get-funded.png -------------------------------------------------------------------------------- /events/assets/img/sponsors/hackernoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/sponsors/hackernoon.png -------------------------------------------------------------------------------- /events/assets/img/sponsors/maker-log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/sponsors/maker-log.png -------------------------------------------------------------------------------- /_assets/_images/1_0kf59M9bNuEIRNDaj54QvQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/_assets/_images/1_0kf59M9bNuEIRNDaj54QvQ.png -------------------------------------------------------------------------------- /_assets/_images/1_V7TMAzvhW7_cn9FbkKqOcQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/_assets/_images/1_V7TMAzvhW7_cn9FbkKqOcQ.png -------------------------------------------------------------------------------- /_assets/_images/1__EfUP-q18EfebxPgZ6BCbA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/_assets/_images/1__EfUP-q18EfebxPgZ6BCbA.png -------------------------------------------------------------------------------- /_assets/_images/1__wZhhTstI_DCebB2fK2c5g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/_assets/_images/1__wZhhTstI_DCebB2fK2c5g.png -------------------------------------------------------------------------------- /career-path/app/images/bulma-type-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/career-path/app/images/bulma-type-white.png -------------------------------------------------------------------------------- /events/assets/img/background/bg-pricing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/background/bg-pricing.jpg -------------------------------------------------------------------------------- /events/assets/img/background/countdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/background/countdown.png -------------------------------------------------------------------------------- /events/assets/img/sponsors/codebuddies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/sponsors/codebuddies.png -------------------------------------------------------------------------------- /events/assets/img/sponsors/help-my-dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/sponsors/help-my-dev.png -------------------------------------------------------------------------------- /events/assets/img/sponsors/maker-rocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/sponsors/maker-rocks.png -------------------------------------------------------------------------------- /events/assets/img/sponsors/product-hunt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitCodeCareer/Career-Roadmaps/HEAD/events/assets/img/sponsors/product-hunt.png -------------------------------------------------------------------------------- /events/assets/scss/colors/_presets.scss: -------------------------------------------------------------------------------- 1 | //All Preset color variables are here 2 | 3 | // blue 4 | $blue: #E91E63; 5 | 6 | //Current Preset Declareation 7 | $preset: $blue; -------------------------------------------------------------------------------- /events/assets/scss/_shortcode.scss: -------------------------------------------------------------------------------- 1 | // Shortcode 2 | 3 | // Countdown 4 | @import 'countdown'; 5 | 6 | // Pricing 7 | @import 'pricing'; 8 | 9 | // Carousel 10 | @import 'carousel'; -------------------------------------------------------------------------------- /career-path/app/js/bulma.js: -------------------------------------------------------------------------------- 1 | // The following code is based off a toggle menu by @Bradcomp 2 | // source: https://gist.github.com/Bradcomp/a9ef2ef322a8e8017443b626208999c1 3 | (function() { 4 | var burger = document.querySelector('.burger'); 5 | var menu = document.querySelector('#'+burger.dataset.target); 6 | burger.addEventListener('click', function() { 7 | burger.classList.toggle('is-active'); 8 | menu.classList.toggle('is-active'); 9 | }); 10 | })(); -------------------------------------------------------------------------------- /front-end-dev-path.md: -------------------------------------------------------------------------------- 1 | ### Want to be a front-end dev? 2 | - Here's the path: HTML > CSS > BEM > Flexbox > jQuery > JavaScript ES5 > AJAX > JavaScript ES6 > TypeScript > Angular 3 | - Reccomended Tools: Gulp, WebPack, NPM, SSH, FTP, DNS, Cpanel, Linux Command Line (CLI) basics. 4 | - Key Concepts: Boolean logic, Classes, Objects, Attributes, Key Value Pairs, Inheritance, Constructors, Instantiation, Scoping, Access Modifiers, If/else conditionals, loops, arrays, sets, tuples, Hypertext Transfer Protocol (HTTP), query strings. 5 | -------------------------------------------------------------------------------- /events/assets/scss/main.scss: -------------------------------------------------------------------------------- 1 | 2 | // Preset Color Styles 3 | @import "colors/presets"; 4 | 5 | // Global Styles 6 | @import "global"; 7 | 8 | // Navbar 9 | @import "navbar"; 10 | 11 | // About US Area 12 | @import "about"; 13 | 14 | // Schedule Area 15 | @import "schedule"; 16 | 17 | // Service Area 18 | @import "service"; 19 | 20 | // Portfolio Area 21 | @import "portfolio"; 22 | 23 | // Team Area 24 | @import "team"; 25 | 26 | // Blog Area 27 | @import "blog"; 28 | 29 | // Contact Area 30 | @import "contact"; 31 | 32 | // Contact Area 33 | @import "footer"; 34 | 35 | // Shortcode 36 | @import "shortcode"; 37 | 38 | 39 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: codecareer 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | -------------------------------------------------------------------------------- /_assets/_images/user-experience.txt: -------------------------------------------------------------------------------- 1 | ux Designer 2 | ux Designer 3 | ui developer 4 | UX analyst 5 | ux developer 6 | ux architect 7 | ux researcher 8 | 9 | http://www.uxbooth.com/articles/complete-beginners-guide-to-design-research/ 10 | Please include your portfolio in your application. Your portfolio should show examples of the user-centered design process, design thinking, as well as your final design solutions. 11 | 12 | 13 | 14 | Job Responsibilities 15 | 16 | Work collaboratively on a project team to support the overall design effort. 17 | Create workflow and experience map diagrams from research data. 18 | Create wireframe prototypes for usability testing. 19 | Create detailed wireframe specifications. 20 | Present work to clients. 21 | 22 | User Personas -------------------------------------------------------------------------------- /events/assets/scss/_testimonial.scss: -------------------------------------------------------------------------------- 1 | // Testimonial 2 | .slide-item{ 3 | margin-top: 60px; 4 | margin-bottom: 0px; 5 | .inner-box{ 6 | position: relative; 7 | padding-top: 20px; 8 | padding-bottom: 25px; 9 | padding-left: 32px; 10 | background: #fff; 11 | padding-right: 5px; 12 | box-shadow: 0 0 20px rgba(0,0,0,0.2); 13 | h3{ 14 | font-size: 20px; 15 | line-height: 28px; 16 | font-weight: 400; 17 | margin-top: 50px; 18 | a{ 19 | color: #2f323c; 20 | &:hover{ 21 | color: $preset; 22 | } 23 | } 24 | } 25 | span{ 26 | font-size: 14px; 27 | color: #848484; 28 | margin-bottom: 30px; 29 | font-weight: 400; 30 | } 31 | p{ 32 | margin-top: 10px; 33 | } 34 | } 35 | .image-thum{ 36 | position: absolute; 37 | display: inline-block; 38 | top: -30px; 39 | box-shadow: 0px -3px 15px rgba(0,0,0,0.2); 40 | border-radius: 50%; 41 | img{ 42 | display: inline-block; 43 | } 44 | } 45 | } -------------------------------------------------------------------------------- /events/assets/php/form-process.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /events/assets/scss/_countdown.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Countdown Style Start 3 | ========================================================================== */ 4 | .countdown-timer{ 5 | .heading-count{ 6 | padding: 10px 68px; 7 | h2{ 8 | font-size: 40px; 9 | color: #212121; 10 | text-transform: uppercase; 11 | line-height: 48px; 12 | } 13 | h4{ 14 | font-size: 24px; 15 | font-weight: 300; 16 | color: #fff; 17 | margin-top: 30px; 18 | span{ 19 | background: #212121; 20 | padding: 7px 15px; 21 | border-radius: 4px; 22 | } 23 | } 24 | p{ 25 | font-size: 14px; 26 | color: #212121; 27 | line-height: 30px; 28 | } 29 | } 30 | } 31 | .time-count div{ 32 | text-align: center; 33 | } 34 | .time-entry{ 35 | display: inline-block; 36 | min-width: 120px; 37 | margin: 15px; 38 | height: 110px; 39 | padding: 20px; 40 | box-shadow: 1px 10px 20px rgba(0,0,0,0.2); 41 | border-radius: 4px; 42 | background: #fff; 43 | text-align: center; 44 | font-weight: 400; 45 | color: #212121; 46 | font-size: 16px; 47 | letter-spacing: 1px; 48 | text-transform: uppercase; 49 | line-height: 22px; 50 | span{ 51 | font-size: 45px; 52 | line-height: 45px; 53 | font-weight: 700; 54 | display: block; 55 | color: #212121; 56 | margin-bottom: 10px; 57 | } 58 | } 59 | .time-entry:first-child{ 60 | border-left: none; 61 | } 62 | .time-countdown{ 63 | margin: 15px 0px 50px 0; 64 | } -------------------------------------------------------------------------------- /events/assets/scss/_portfolio.scss: -------------------------------------------------------------------------------- 1 | /* Gallery Section */ 2 | #gallery{ 3 | background: #f3f4f3; 4 | position: relative; 5 | .gallery-box{ 6 | position: relative; 7 | margin-bottom: 30px; 8 | .overlay-box{ 9 | position: absolute; 10 | top: 0px; 11 | left: 0px; 12 | right: 0px; 13 | bottom: 0px; 14 | padding-top: 35%; 15 | -webkit-transition: all 500ms ease; 16 | -moz-transition: all 500ms ease; 17 | -ms-transition: all 500ms ease; 18 | -o-transition: all 500ms ease; 19 | transition: all 500ms ease; 20 | i{ 21 | background: #ffffff; 22 | color: $preset; 23 | font-size: 30px; 24 | width: 50px; 25 | height: 50px; 26 | display: inline-block; 27 | line-height: 50px; 28 | border-radius: 50%; 29 | transform: scale(0,0); 30 | -webkit-transform: scale(0,0); 31 | -moz-transform: scale(0,0); 32 | -ms-transform: scale(0,0); 33 | -o-transform: scale(0,0); 34 | -webkit-transition: all 500ms ease; 35 | -moz-transition: all 500ms ease; 36 | -ms-transition: all 500ms ease; 37 | -o-transition: all 500ms ease; 38 | transition: all 500ms ease; 39 | } 40 | } 41 | } 42 | .gallery-box:hover .overlay-box{ 43 | background: rgba(233, 30, 99, 0.7); 44 | transform: scale(1,1); 45 | transition:all 500ms ease; 46 | } 47 | .gallery-box:hover .overlay-box i{ 48 | -webkit-transform:scale(1,1); 49 | -moz-transform:scale(1,1); 50 | -ms-transform:scale(1,1); 51 | -o-transform:scale(1,1); 52 | } 53 | } 54 | 55 | 56 | -------------------------------------------------------------------------------- /events/assets/scss/_service.scss: -------------------------------------------------------------------------------- 1 | /* Services Item */ 2 | .services{ 3 | background: #fff; 4 | } 5 | .padding-none{ 6 | padding: 0; 7 | border-left: 1px solid #ddd; 8 | border-bottom: 1px solid #ddd; 9 | } 10 | .padding-none:nth-child(1){ 11 | border-left: none; 12 | } 13 | .padding-none:nth-child(4){ 14 | border-bottom: none; 15 | border-left: none; 16 | } 17 | .padding-none:nth-child(5){ 18 | border-bottom: none; 19 | } 20 | .padding-none:nth-child(6){ 21 | border-bottom: none; 22 | } 23 | .services-wrapper{ 24 | margin-top: 30px; 25 | } 26 | .services-item{ 27 | padding: 40px 20px; 28 | text-align: center; 29 | transition: all 0.3s ease-in-out 0s; 30 | -moz-transition: all 0.3s ease-in-out 0s; 31 | -webkit-transition: all 0.3s ease-in-out 0s; 32 | -o-transition: all 0.3s ease-in-out 0s; 33 | .icon{ 34 | i{ 35 | width: 50px; 36 | height: 50px; 37 | display: inline-block; 38 | line-height: 50px; 39 | font-size: 48px; 40 | text-align: center; 41 | margin-bottom: 15px; 42 | color: #212121; 43 | border-radius: 0; 44 | transition: all 0.3s ease-in-out 0s; 45 | -moz-transition: all 0.3s ease-in-out 0s; 46 | -webkit-transition: all 0.3s ease-in-out 0s; 47 | -o-transition: all 0.3s ease-in-out 0s; 48 | } 49 | } 50 | .services-content{ 51 | h3{ 52 | margin-bottom: 10px; 53 | line-height: 26px; 54 | a{ 55 | font-size: 20px; 56 | letter-spacing: 0.5px; 57 | font-weight: 400; 58 | color: #212121; 59 | } 60 | } 61 | } 62 | } 63 | .services-item:hover{ 64 | background: #f3f3f3; 65 | } 66 | .services-item:hover .icon i{ 67 | background: transparent; 68 | color: $preset; 69 | } 70 | 71 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /career-path/app/css/hero.css: -------------------------------------------------------------------------------- 1 | html,body { 2 | background: #EFF3F4; 3 | font-family: 'Open Sans', serif; 4 | } 5 | .hero-body .container { 6 | max-width: 700px; 7 | } 8 | .hero-body .title { 9 | color: hsl(192,17%,99%) !important; 10 | } 11 | .hero-body .subtitle { 12 | color: hsl(192,17%,99%) !important; 13 | padding-top: 2rem; 14 | line-height: 1.5; 15 | } 16 | .features { 17 | padding: 5rem 0; 18 | } 19 | .box.cta { 20 | border-radius: 0; 21 | border-left: none; 22 | border-right: none; 23 | } 24 | .card-image > .fa { 25 | font-size: 8rem; 26 | padding-top: 2rem; 27 | padding-bottom: 2rem; 28 | color: #209cee; 29 | } 30 | .card-content .content { 31 | font-size: 14px; 32 | margin: 1rem 1rem; 33 | } 34 | .card-content .content h4 { 35 | font-size: 16px; 36 | font-weight: 700; 37 | } 38 | .card { 39 | box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18); 40 | margin-bottom: 2rem; 41 | } 42 | .intro { 43 | padding: 5rem 0; 44 | text-align: center; 45 | } 46 | .sandbox { 47 | padding: 5rem 0; 48 | } 49 | .tile.notification { 50 | display: flex; 51 | justify-content: center; 52 | flex-direction: column; 53 | } 54 | .is-shady { 55 | animation: flyintoright .4s backwards; 56 | background: #fff; 57 | box-shadow: rgba(0, 0, 0, .1) 0 1px 0; 58 | border-radius: 4px; 59 | display: inline-block; 60 | margin: 10px; 61 | position: relative; 62 | transition: all .2s ease-in-out; 63 | } 64 | .is-shady:hover { 65 | box-shadow: 0 10px 16px rgba(0, 0, 0, .13), 0 6px 6px rgba(0, 0, 0, .19); 66 | } 67 | /*adds font awesome stars*/ 68 | footer li:before { 69 | content: '\f1b2'; 70 | font-family: 'FontAwesome'; 71 | float: left; 72 | margin-left: -1.5em; 73 | color: #147efb; 74 | } -------------------------------------------------------------------------------- /events/assets/js/contact-form-script.min.js: -------------------------------------------------------------------------------- 1 | $("#contactForm").validator().on("submit", function (event) { 2 | if (event.isDefaultPrevented()) { 3 | // handle the invalid form... 4 | formError(); 5 | submitMSG(false, "Did you fill in the form properly?"); 6 | } else { 7 | // everything looks good! 8 | event.preventDefault(); 9 | submitForm(); 10 | } 11 | }); 12 | 13 | 14 | function submitForm(){ 15 | // Initiate Variables With Form Content 16 | var name = $("#name").val(); 17 | var email = $("#email").val(); 18 | var msg_subject = $("#msg_subject").val(); 19 | var message = $("#message").val(); 20 | 21 | 22 | $.ajax({ 23 | type: "POST", 24 | url: "assets/php/form-process.php", 25 | data: "name=" + name + "&email=" + email + "&msg_subject=" + msg_subject + "&message=" + message, 26 | success : function(text){ 27 | if (text == "success"){ 28 | formSuccess(); 29 | } else { 30 | formError(); 31 | submitMSG(false,text); 32 | } 33 | } 34 | }); 35 | } 36 | 37 | function formSuccess(){ 38 | $("#contactForm")[0].reset(); 39 | submitMSG(true, "Message Submitted!") 40 | } 41 | 42 | function formError(){ 43 | $("#contactForm").removeClass().addClass('shake animated').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function(){ 44 | $(this).removeClass(); 45 | }); 46 | } 47 | 48 | function submitMSG(valid, msg){ 49 | if(valid){ 50 | var msgClasses = "h3 text-left tada animated text-success"; 51 | } else { 52 | var msgClasses = "h3 text-left text-danger"; 53 | } 54 | $("#msgSubmit").removeClass().addClass(msgClasses).text(msg); 55 | } -------------------------------------------------------------------------------- /events/assets/scss/_pricing.scss: -------------------------------------------------------------------------------- 1 | /* Pricing Ticket */ 2 | #pricing{ 3 | background: url(../img/background/bg-pricing.jpg); 4 | background-attachment: fixed; 5 | overflow: hidden; 6 | position: relative; 7 | .section-title-header{ 8 | .section-title{ 9 | color: #fff; 10 | } 11 | p{ 12 | color: #fff; 13 | } 14 | } 15 | .price-block-wrapper{ 16 | text-align: center; 17 | display: inline-block; 18 | width: 100%; 19 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); 20 | background: #ffffff; 21 | padding: 30px; 22 | .icon{ 23 | padding: 20px; 24 | i{ 25 | font-size: 60px; 26 | color: $preset; 27 | } 28 | } 29 | .colmun-title{ 30 | margin-top: 15px; 31 | h5{ 32 | font-size: 18px; 33 | line-height: 30px; 34 | color: #212121; 35 | margin-bottom: 5px; 36 | font-weight: 700; 37 | background: #ffffff; 38 | text-transform: uppercase; 39 | } 40 | } 41 | .price{ 42 | padding-bottom: 10px; 43 | transition: all 500ms ease; 44 | -webkit-transition: all 500ms ease; 45 | -moz-transition: all 500ms ease; 46 | h2{ 47 | font-size: 38px; 48 | color: #5c5c5c; 49 | line-height: 42px; 50 | margin: 0; 51 | } 52 | p{ 53 | font-size: 15px; 54 | color: #5c5c5c; 55 | font-weight: 700; 56 | letter-spacing: 1px; 57 | line-height: 30px; 58 | text-transform: uppercase; 59 | transition: all 500ms ease; 60 | -webkit-transition: all 500ms ease; 61 | -moz-transition: all 500ms ease; 62 | } 63 | } 64 | .pricing-list{ 65 | padding: 10px 60px 10px 78px; 66 | text-align: left; 67 | ul{ 68 | padding-bottom: 15px; 69 | li{ 70 | font-size: 15px; 71 | color: #212121; 72 | font-weight: 400; 73 | padding: 2px 0px; 74 | i{ 75 | margin-right: 7px; 76 | font-size: 12px; 77 | color: $preset; 78 | } 79 | } 80 | } 81 | } 82 | .btn{ 83 | i{ 84 | font-size: 12px; 85 | margin-right: 5px; 86 | } 87 | } 88 | } 89 | } -------------------------------------------------------------------------------- /events/assets/scss/_blog.scss: -------------------------------------------------------------------------------- 1 | .blog-item{ 2 | background-color: #fff; 3 | border-radius: 4px; 4 | margin-bottom: 40px; 5 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); 6 | -webkit-transition: all 300ms ease-in-out; 7 | -moz-transition: all 300ms ease-in-out; 8 | transition: all 300ms ease-in-out; 9 | .blog-image{ 10 | width: 100%; 11 | max-width: 370px; 12 | position: relative; 13 | overflow: hidden; 14 | img{ 15 | background: #000; 16 | -webkit-transform: scale(1); 17 | -moz-transform: scale(1); 18 | -ms-transform: scale(1); 19 | -o-transform: scale(1); 20 | transform: scale(1); 21 | -webkit-transition: all 300ms ease-in-out; 22 | -moz-transition: all 300ms ease-in-out; 23 | transition: all 300ms ease-in-out; 24 | } 25 | } 26 | .tag{ 27 | position: absolute; 28 | text-transform: uppercase; 29 | top: -18px; 30 | left: 20px; 31 | padding: 4px 27px; 32 | background-color: white; 33 | color: $preset; 34 | border-radius: 4px; 35 | display: block; 36 | font-size: 14px; 37 | font-weight: 500; 38 | box-shadow: 0px 3px 16px rgba(35, 31, 32, 0.15); 39 | 40 | } 41 | .descr{ 42 | padding: 30px 15px; 43 | color: #212121; 44 | position: relative; 45 | h3{ 46 | line-height: 30px; 47 | margin-bottom: 15px; 48 | a{ 49 | font-weight: 400; 50 | text-align: center; 51 | font-size: 25px; 52 | color: #212121; 53 | -webkit-transition: all 300ms ease-in-out; 54 | -moz-transition: all 300ms ease-in-out; 55 | transition: all 300ms ease-in-out; 56 | &:hover{ 57 | color: $preset; 58 | } 59 | } 60 | } 61 | .meta-tags{ 62 | margin-bottom: 10px; 63 | span{ 64 | color: #999; 65 | margin-right: 8px; 66 | a{ 67 | color: #999; 68 | margin-left: 8px; 69 | &:hover{ 70 | color: $preset; 71 | } 72 | } 73 | } 74 | } 75 | } 76 | } 77 | 78 | .blog-item:hover{ 79 | box-shadow: 0 0 30px rgba(0,0,0,0.2); 80 | } 81 | .blog-item:hover .blog-image img{ 82 | -webkit-transform: scale(1.1); 83 | -moz-transform: scale(1.1); 84 | -ms-transform: scale(1.1); 85 | -o-transform: scale(1.1); 86 | transform: scale(1.1); 87 | } -------------------------------------------------------------------------------- /events/assets/scss/_about.scss: -------------------------------------------------------------------------------- 1 | //About 2 | .about-item{ 3 | padding: 10px; 4 | box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.17); 5 | -webkit-transition: all 300ms ease-in-out; 6 | transition: all 300ms ease-in-out; 7 | .about-text{ 8 | padding: 20px; 9 | background: #fff; 10 | h3{ 11 | font-size: 16px; 12 | text-transform: uppercase; 13 | font-weight: 500; 14 | a{ 15 | color: #212121; 16 | &:hover{ 17 | color: $preset; 18 | } 19 | } 20 | } 21 | .btn{ 22 | margin-top: 10px; 23 | } 24 | } 25 | } 26 | .about-item:hover{ 27 | box-shadow: 1px 3px 15px rgba(0, 0, 0, 0.1); 28 | } 29 | 30 | // Event Slides 31 | #event-slides{ 32 | .video{ 33 | img{ 34 | border-radius: 4px; 35 | } 36 | } 37 | .intro-desc{ 38 | line-height: 26px; 39 | margin-bottom: 30px; 40 | } 41 | .intro-title{ 42 | color: #212121; 43 | font-size: 22px; 44 | font-weight: 700; 45 | letter-spacing: 1px; 46 | margin-bottom: 15px; 47 | } 48 | .list-specification{ 49 | li{ 50 | margin-bottom: 10px; 51 | font-size: 15px; 52 | i{ 53 | margin-right: 5px; 54 | } 55 | } 56 | } 57 | } 58 | // Counter Section 59 | .counter-section{ 60 | background: $preset; 61 | overflow: hidden; 62 | position: relative; 63 | /* 64 | &:before{ 65 | content: ''; 66 | position: absolute; 67 | top: 0; 68 | bottom: 0; 69 | width: 100%; 70 | height: 100%; 71 | background: rgba(0, 0, 0, 0.5); 72 | } */ 73 | .counter { 74 | padding: 30px 0; 75 | .icon{ 76 | margin-bottom: 15px; 77 | i{ 78 | font-size: 60px; 79 | color: #fff; 80 | } 81 | } 82 | p{ 83 | font-size: 15px; 84 | color: #fff; 85 | font-weight: 700; 86 | text-transform: uppercase; 87 | } 88 | span{ 89 | color: #fefefe; 90 | font-size: 12px; 91 | font-weight: 400; 92 | text-transform: uppercase; 93 | } 94 | } 95 | 96 | } 97 | 98 | /* Sponsors Area */ 99 | #sponsors{ 100 | background: #f3f4f3; 101 | .spnsors-logo{ 102 | text-align: center; 103 | border-radius: 4px; 104 | padding: 50px; 105 | margin-bottom: 30px; 106 | display: inline-block; 107 | border: 1px solid #ddd; 108 | background: #fff; 109 | -webkit-transition: all 300ms ease-in-out; 110 | transition: all 300ms ease-in-out; 111 | } 112 | .spnsors-logo:hover{ 113 | border-color: transparent; 114 | box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2); 115 | } 116 | } -------------------------------------------------------------------------------- /events/assets/js/main.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 3 | "use strict"; 4 | 5 | $(window).on('load', function() { 6 | 7 | /*Page Loader active 8 | ========================================================*/ 9 | $('#preloader').fadeOut(); 10 | 11 | // Sticky Nav 12 | $(window).on('scroll', function() { 13 | if ($(window).scrollTop() > 200) { 14 | $('.scrolling-navbar').addClass('top-nav-collapse'); 15 | } else { 16 | $('.scrolling-navbar').removeClass('top-nav-collapse'); 17 | } 18 | }); 19 | 20 | /* ========================================================================== 21 | countdown timer 22 | ========================================================================== */ 23 | jQuery('#clock').countdown('2018/06/21',function(event){ 24 | var $this=jQuery(this).html(event.strftime('' 25 | +'
%-D Days
' 26 | +'
%H Hours
' 27 | +'
%M Minutes
' 28 | +'
%S Seconds
')); 29 | }); 30 | 31 | /* slicknav mobile menu active */ 32 | $('.mobile-menu').slicknav({ 33 | prependTo: '.navbar-header', 34 | parentTag: 'liner', 35 | allowParentLinks: true, 36 | duplicate: true, 37 | label: '', 38 | }); 39 | 40 | /* WOW Scroll Spy 41 | ========================================================*/ 42 | var wow = new WOW({ 43 | //disabled for mobile 44 | mobile: false 45 | }); 46 | wow.init(); 47 | 48 | /* Nivo Lightbox 49 | ========================================================*/ 50 | $('.lightbox').nivoLightbox({ 51 | effect: 'fadeScale', 52 | keyboardNav: true, 53 | }); 54 | 55 | // one page navigation 56 | $('.navbar-nav').onePageNav({ 57 | currentClass: 'active' 58 | }); 59 | 60 | /* Back Top Link active 61 | ========================================================*/ 62 | var offset = 200; 63 | var duration = 500; 64 | $(window).scroll(function() { 65 | if ($(this).scrollTop() > offset) { 66 | $('.back-to-top').fadeIn(400); 67 | } else { 68 | $('.back-to-top').fadeOut(400); 69 | } 70 | }); 71 | 72 | $('.back-to-top').on('click',function(event) { 73 | event.preventDefault(); 74 | $('html, body').animate({ 75 | scrollTop: 0 76 | }, 600); 77 | return false; 78 | }); 79 | 80 | }); 81 | 82 | }(jQuery)); -------------------------------------------------------------------------------- /events/assets/scss/_carousel.scss: -------------------------------------------------------------------------------- 1 | #main-slide { 2 | .carousel-control{ 3 | display: none; 4 | transition: $transition; 5 | } 6 | .carousel-indicators{cursor: pointer; bottom: 90px;} 7 | &:hover { 8 | .carousel-control{ 9 | display: block; 10 | transition: $transition; 11 | -webkit-animation-duration: 1s; 12 | animation-duration: 1s; 13 | -webkit-animation-fill-mode: both; 14 | animation-fill-mode: both; 15 | -webkit-animation-name: fadeIn; 16 | animation-name: fadeIn; 17 | } 18 | } 19 | .carousel-item img { 20 | position: relative; 21 | width: 100%; 22 | } 23 | .carousel-inner .carousel-item::after { 24 | bottom: 0; 25 | content: ""; 26 | left: 0; 27 | position: absolute; 28 | right: 0; 29 | top: 0; 30 | } 31 | .carousel-item .carousel-caption { 32 | opacity: 0; 33 | transition: opacity 100ms ease 0s; 34 | z-index: 0; 35 | .heading{ 36 | font-size: 48px; 37 | font-weight: 700; 38 | color: #fff; 39 | text-transform: uppercase; 40 | letter-spacing: 0.1rem; 41 | margin-top: 30px; 42 | } 43 | p{ 44 | font-size: 20px; 45 | } 46 | } 47 | .carousel-item.active .carousel-caption { 48 | opacity: 1; 49 | transition: opacity 100ms ease 0s; 50 | z-index: 1; 51 | } 52 | .carousel-caption{ 53 | color: #fff; 54 | position: absolute; 55 | top: 35%; 56 | .btn{ 57 | margin: 25px 25px 0px 0px; 58 | } 59 | } 60 | 61 | } 62 | #main-slide .carousel-control-next, 63 | #main-slide .carousel-control-prev{ 64 | opacity: 1; 65 | box-shadow: none; 66 | } 67 | 68 | #main-slide .carousel-control-prev span { 69 | padding: 15px; 70 | } 71 | 72 | #main-slide .carousel-control-next span { 73 | padding: 15px; 74 | } 75 | #main-slide .carousel-control { 76 | top: 45%; 77 | } 78 | #main-slide .carousel-control .lni-chevron-left, 79 | #main-slide .carousel-control .lni-chevron-right{ 80 | position: absolute; 81 | z-index: 5; 82 | } 83 | #main-slide .carousel-control .lni-chevron-left{ 84 | left: 15px; 85 | } 86 | 87 | #main-slide .carousel-control .lni-chevron-right{ 88 | right: 15px; 89 | } 90 | .carousel-indicators li{ 91 | width: 12px; 92 | height: 12px; 93 | border-radius: 50%; 94 | } 95 | #main-slide .carousel-control i{ 96 | line-height: 40px; 97 | font-size: 18px; 98 | width: 45px; 99 | border: 2px solid #fff; 100 | height: 45px; 101 | display: block; 102 | border-radius: 2px; 103 | background: transparent; 104 | color: #fff; 105 | -webkit-transition: all 500ms ease; 106 | transition: all 500ms ease; 107 | @include icon-shadow; 108 | } 109 | 110 | #main-slide .carousel-control i:hover{ 111 | background: rgba(255, 255, 255, 0.2); 112 | color: #fff; 113 | border-color: #fff; 114 | } -------------------------------------------------------------------------------- /events/assets/scss/_team.scss: -------------------------------------------------------------------------------- 1 | /* Team Item */ 2 | .team-item:hover{ 3 | box-shadow: 0 25px 35px -12px rgba(0,0,0,0.35); 4 | } 5 | .team-item{ 6 | margin: 15px 0; 7 | padding: 10px; 8 | border-radius: 4px; 9 | position: relative; 10 | box-shadow: 0px 0px 5px rgba(0,0,0,0.17); 11 | transition: all 0.3s ease-in-out 0s; 12 | -moz-transition: all 0.3s ease-in-out 0s; 13 | -webkit-transition: all 0.3s ease-in-out 0s; 14 | -o-transition: all 0.3s ease-in-out 0s; 15 | .team-img{ 16 | position: relative; 17 | cursor: pointer; 18 | overflow: hidden; 19 | } 20 | .team-overlay{ 21 | height: 100%; 22 | position: absolute; 23 | top: 0; 24 | background: rgba(47, 47, 47, 0.7); 25 | opacity: 0; 26 | width: 100%; 27 | transition: all 0.3s ease-in-out 0s; 28 | -moz-transition: all 0.3s ease-in-out 0s; 29 | -webkit-transition: all 0.3s ease-in-out 0s; 30 | -o-transition: all 0.3s ease-in-out 0s; 31 | } 32 | .overlay-social-icon{ 33 | color: #fff; 34 | top: 15px; 35 | position: absolute; 36 | right: 15px; 37 | .social-icons{ 38 | padding-left: 0; 39 | -webkit-transform: translateY(-30px); 40 | -moz-transform: translateY(-30px); 41 | transform: translateY(-30px); 42 | transition: all 0.3s ease-in-out 0s; 43 | -moz-transition: all 0.3s ease-in-out 0s; 44 | -webkit-transition: all 0.3s ease-in-out 0s; 45 | -o-transition: all 0.3s ease-in-out 0s; 46 | li{ 47 | display: inline-block; 48 | margin: 0 4px; 49 | a{ 50 | letter-spacing: 0px; 51 | outline: 0 !important; 52 | i{ 53 | font-size: 20px; 54 | color: #fff; 55 | width: 36px; 56 | height: 36px; 57 | background: $preset; 58 | display: block; 59 | border-radius: 4px; 60 | line-height: 36px; 61 | transition: all 0.3s ease-in-out 0s; 62 | -moz-transition: all 0.3s ease-in-out 0s; 63 | -webkit-transition: all 0.3s ease-in-out 0s; 64 | -o-transition: all 0.3s ease-in-out 0s; 65 | } 66 | } 67 | a:hover .fa-facebook{ 68 | background: #3B5998; 69 | } 70 | a:hover .fa-twitter{ 71 | background: #00aced; 72 | } 73 | a:hover .fa-instagram{ 74 | background: #fb3958; 75 | } 76 | } 77 | } 78 | } 79 | .info-text{ 80 | position: absolute; 81 | bottom: 10px; 82 | left: 10px; 83 | padding: 15px 20px; 84 | background: #f3f4f3; 85 | text-align: left; 86 | h3{ 87 | font-size: 16px; 88 | text-transform: uppercase; 89 | font-weight: 700; 90 | margin-bottom: 5px; 91 | a{ 92 | color: #212121; 93 | &:hover{ 94 | color: $preset; 95 | } 96 | } 97 | } 98 | p{ 99 | margin: 0; 100 | color: #888; 101 | } 102 | } 103 | } 104 | .team-item:hover .team-overlay{ 105 | opacity: 1; 106 | } 107 | .team-item:hover .social-icons { 108 | -webkit-transform: translateY(0px); 109 | -moz-transform: translateY(0px); 110 | transform: translateY(0px); 111 | } 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | -------------------------------------------------------------------------------- /events/assets/scss/_footer.scss: -------------------------------------------------------------------------------- 1 | /* Footer Area Start */ 2 | .footer-area{ 3 | background: #222222; 4 | h3{ 5 | font-size: 20px; 6 | color: #fff; 7 | font-weight: 700; 8 | padding-bottom: 10px; 9 | letter-spacing: 0.5px; 10 | } 11 | p{ 12 | font-size: 14px; 13 | color: #fff; 14 | line-height: 20px; 15 | margin: 0; 16 | padding-right: 50px; 17 | } 18 | ul{ 19 | li{ 20 | a{ 21 | color: #fff; 22 | font-size: 13px; 23 | font-weight: 400; 24 | &:hover{ 25 | color: $preset; 26 | } 27 | } 28 | } 29 | } 30 | .footer-social{ 31 | li{ 32 | display: inline-block; 33 | a{ 34 | color: #000; 35 | background: #fff; 36 | width: 35px; 37 | height: 35px; 38 | line-height: 40px; 39 | display: block; 40 | text-align: center; 41 | border-radius: 4px; 42 | font-size: 15px; 43 | margin-right: 5px; 44 | transition: all 0.3s ease-in-out 0s; 45 | -moz-transition: all 0.3s ease-in-out 0s; 46 | -webkit-transition: all 0.3s ease-in-out 0s; 47 | -o-transition: all 0.3s ease-in-out 0s; 48 | &:hover{ 49 | color: #fff; 50 | } 51 | } 52 | .facebook:hover{ 53 | background: #3B5998; 54 | } 55 | .twitter:hover{ 56 | background: #00aced; 57 | } 58 | .linkedin:hover{ 59 | background: #fb3958; 60 | } 61 | .foursqare:hover{ 62 | background: #25a0ca; 63 | } 64 | .google-plus:hover{ 65 | background: #d34836; 66 | } 67 | } 68 | } 69 | .footer-text{ 70 | p{ 71 | font-size: 14px; 72 | margin-top: 20px; 73 | color: #fff; 74 | a{ 75 | color: $preset; 76 | } 77 | } 78 | .nav-inline{ 79 | .nav-link{ 80 | padding: 11px 7px; 81 | color: #888; 82 | &:hover{ 83 | color: $preset; 84 | } 85 | } 86 | } 87 | } 88 | } 89 | .image-list{ 90 | padding: 0; 91 | margin: 0; 92 | li{ 93 | margin-bottom: 15px; 94 | display: inline-block; 95 | .overlay{ 96 | float: left; 97 | width: 70px; 98 | height: 60px; 99 | position: relative; 100 | overflow: hidden; 101 | text-align: center; 102 | margin: 0; 103 | } 104 | .overlay:hover figcaption{ 105 | opacity: 1; 106 | transition: $transition; 107 | } 108 | } 109 | .post-content{ 110 | margin-left: 85px; 111 | margin-bottom: 0; 112 | .post-title{ 113 | margin-bottom: 5px; 114 | font-weight: 500; 115 | font-size: 15px; 116 | margin: 0; 117 | a{ 118 | color: #fff; 119 | &:hover{ 120 | color: $preset; 121 | } 122 | } 123 | } 124 | .meta{ 125 | color: #999; 126 | span{ 127 | text-transform: uppercase; 128 | font-size: 12px; 129 | line-height: 18px; 130 | margin-bottom: 10px; 131 | } 132 | } 133 | } 134 | } 135 | .newsletter-wrapper{ 136 | .form-group{ 137 | margin-bottom: 20px; 138 | position: relative; 139 | input{ 140 | display: inline-block; 141 | color: #fff; 142 | position: relative; 143 | } 144 | } 145 | .sub-btn{ 146 | position: absolute; 147 | top: 0; 148 | right: 0px; 149 | border-radius: 0; 150 | padding: 10px 20px; 151 | } 152 | } 153 | .widget{ 154 | margin-top: 10px; 155 | .widget-title{ 156 | margin-bottom: 20px; 157 | font-size: 18px; 158 | color: #fff; 159 | } 160 | } 161 | #copyright{ 162 | background: #0b0b0b; 163 | text-align: center; 164 | p{ 165 | line-height: 42px; 166 | color: #fff; 167 | margin: 0; 168 | a{ 169 | color: #fff; 170 | &:hover{ 171 | color: $preset; 172 | } 173 | } 174 | } 175 | } 176 | 177 | -------------------------------------------------------------------------------- /events/assets/scss/_schedule.scss: -------------------------------------------------------------------------------- 1 | /* Schedule Area */ 2 | #schedules{ 3 | background: #f3f4f3; 4 | } 5 | #schedule-tab{ 6 | position: relative; 7 | } 8 | .schedule{ 9 | .schedule-tab-title{ 10 | margin-bottom: 35px; 11 | .nav-tabs{ 12 | background: #ffffff; 13 | .nav-link{ 14 | border-radius: 0px; 15 | position: relative; 16 | cursor: pointer; 17 | height: 90px; 18 | width: 255px; 19 | border-bottom: 1px solid #e5e5e5; 20 | transition: all 500ms ease; 21 | padding: 20px 20px; 22 | } 23 | } 24 | .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active, 25 | .nav-tabs .nav-item .nav-link:hover{ 26 | background: $preset; 27 | border: 1px solid $preset; 28 | transition: all 0.3s ease-in-out 0s; 29 | -moz-transition: all 0.3s ease-in-out 0s; 30 | -webkit-transition: all 0.3s ease-in-out 0s; 31 | -o-transition: all 0.3s ease-in-out 0s; 32 | h4{ 33 | color: #fff; 34 | } 35 | h5{ 36 | color: #fff; 37 | } 38 | } 39 | .item-text{ 40 | h4{ 41 | font-size: 15px; 42 | color: #2f323c; 43 | line-height: 22px; 44 | font-weight: 400; 45 | text-transform: uppercase; 46 | } 47 | h5{ 48 | font-size: 14px; 49 | color: #848484; 50 | line-height: 16px; 51 | font-weight: 400; 52 | text-transform: capitalize; 53 | } 54 | } 55 | } 56 | .schedule-tab-content{ 57 | .tab-content{ 58 | box-shadow: 1px 3px 15px rgba(0, 0, 0, 0.1); 59 | } 60 | .card{ 61 | border: none; 62 | } 63 | } 64 | .show .card-body{ 65 | background: #f3f4f3; 66 | } 67 | .collapsed{ 68 | 69 | } 70 | .card-header{ 71 | border: none; 72 | cursor: pointer; 73 | background: #fff; 74 | border-bottom: 1px solid #ddd; 75 | .images-box{ 76 | width: 70px; 77 | height: 70px; 78 | float: left; 79 | margin-right: 20px; 80 | img{ 81 | border-radius: 50%; 82 | } 83 | } 84 | .time{ 85 | color: #777777; 86 | font-size: 13px; 87 | margin-bottom: 5px; 88 | } 89 | h4{ 90 | font-weight: 700; 91 | font-size: 18px; 92 | color: #212121; 93 | margin-bottom: 8px; 94 | } 95 | .name{ 96 | position: relative; 97 | font-size: 14px; 98 | color: #777777; 99 | font-weight: 500; 100 | display: inline-block; 101 | margin-bottom: 5px; 102 | } 103 | } 104 | .card-body{ 105 | padding: 15px 70px 15px 110px; 106 | background: #fff; 107 | border-bottom: 1px solid #ddd; 108 | .location{ 109 | font-size: 13px; 110 | color: #777777; 111 | span{ 112 | color: $preset; 113 | margin-right: 5px; 114 | } 115 | } 116 | } 117 | } 118 | 119 | .accordion{ 120 | .card{ 121 | border-radius: 0px; 122 | margin-bottom: -2px; 123 | } 124 | .header-title{ 125 | position: relative; 126 | &:after{ 127 | font-family: "LineIcons"; 128 | content: "\e93a"; 129 | position: absolute; 130 | right: 10px; 131 | color: #999; 132 | top: 50%; 133 | line-height: 1; 134 | padding: 0px 5px; 135 | margin-top: -7px; 136 | } 137 | } 138 | .collapsed:after{ 139 | content: "\e940"; 140 | } 141 | .card-header{ 142 | background: transparent; 143 | cursor: pointer; 144 | padding: 0; 145 | i{ 146 | color: $preset; 147 | width: 40px; 148 | height: 40px; 149 | display: inline-block; 150 | line-height: 40px; 151 | text-align: center; 152 | margin-right: 10px; 153 | border-right: 1px solid #ddd; 154 | } 155 | } 156 | .card-body{ 157 | padding-left: 56px; 158 | } 159 | } 160 | 161 | -------------------------------------------------------------------------------- /events/assets/css/slicknav.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * SlickNav Responsive Mobile Menu v1.0.3 3 | * (c) 2015 Josh Cope 4 | * licensed under MIT 5 | */ 6 | .slicknav_btn { 7 | cursor: pointer; 8 | display: block; 9 | float: right; 10 | height: 35px; 11 | line-height: 50px; 12 | padding: 10px 0 9px; 13 | position: relative; 14 | vertical-align: middle; 15 | width: 44px; 16 | } 17 | .slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar { 18 | margin-top: 0.188em; } 19 | 20 | .slicknav_menu { 21 | *zoom: 1; } 22 | .slicknav_menu .slicknav_menutxt { 23 | display: block; 24 | line-height: 1.188em; 25 | float: left; } 26 | .slicknav_menu .slicknav_icon { 27 | margin: 0.188em 0 0 0.438em; } 28 | .slicknav_menu .slicknav_no-text { 29 | margin: 0; } 30 | .slicknav_menu .slicknav_icon-bar { 31 | display: block; 32 | width: 1.125em; 33 | height: 0.125em; 34 | margin: 0 auto; 35 | -webkit-border-radius: 1px; 36 | -moz-border-radius: 1px; 37 | border-radius: 1px; 38 | -webkit-transition: all 0.2s linear; 39 | -moz-transition: all 0.2s linear; 40 | -o-transition: all 0.2s linear; 41 | transition: all 0.2s linear; 42 | } 43 | .slicknav_menu:before { 44 | content: " "; 45 | display: table; } 46 | .slicknav_menu:after { 47 | content: " "; 48 | display: table; 49 | clear: both; } 50 | 51 | .slicknav_nav { 52 | clear: both; } 53 | .slicknav_nav ul { 54 | display: block; } 55 | .slicknav_nav li { 56 | display: block; 57 | line-height: 30px; 58 | } 59 | .slicknav_nav li:not(:first-child){ 60 | } 61 | .slicknav_nav .slicknav_arrow { 62 | background: #ededed none repeat scroll 0 0; 63 | float: right; 64 | text-align: center; 65 | width: 35px; 66 | color: #666; 67 | } 68 | .slicknav_nav .slicknav_item { 69 | cursor: pointer; } 70 | .slicknav_nav .slicknav_item a { 71 | display: inline; } 72 | .slicknav_nav .slicknav_row { 73 | display: block; } 74 | .slicknav_nav a { 75 | display: block; } 76 | .slicknav_nav .slicknav_parent-link a { 77 | display: inline; } 78 | 79 | .slicknav_brand { 80 | float: left; } 81 | 82 | .slicknav_menu { 83 | font-size: 16px; 84 | box-sizing: border-box; 85 | } 86 | .slicknav_menu ul{ 87 | background: #fff; 88 | } 89 | .slicknav_menu * { 90 | box-sizing: border-box; } 91 | .slicknav_menu .slicknav_menutxt { 92 | color: #fff; 93 | font-weight: bold; 94 | text-shadow: 0 1px 3px #000; } 95 | 96 | .slicknav_btn { 97 | border: 1px solid; 98 | border-radius: 0; 99 | margin: 11px 15px; 100 | -webkit-transition: all 0.2s linear; 101 | -moz-transition: all 0.2s linear; 102 | -o-transition: all 0.2s linear; 103 | transition: all 0.2s linear; 104 | } 105 | 106 | .slicknav_nav { 107 | color: #fff; 108 | font-size: 0.875em; 109 | list-style: outside none none; 110 | margin: 0; 111 | padding: 0; 112 | width: 100%; 113 | } 114 | .slicknav_nav ul { 115 | list-style: none; 116 | overflow: hidden; 117 | padding: 0; 118 | margin: 0 0 0 20px; } 119 | .slicknav_nav .slicknav_row { 120 | padding: 5px 10px; 121 | margin: 2px 5px; } 122 | .slicknav_nav a { 123 | padding: 5px 10px; 124 | margin: 2px 5px; 125 | text-decoration: none; 126 | color: #666; } 127 | .slicknav_nav .slicknav_txtnode { 128 | margin-left: 15px; } 129 | .slicknav_nav .slicknav_item a { 130 | padding: 0; 131 | margin: 0; } 132 | .slicknav_nav .slicknav_parent-link a { 133 | padding: 0; 134 | margin: 0; } 135 | 136 | .slicknav_brand { 137 | color: #fff; 138 | font-size: 18px; 139 | line-height: 30px; 140 | padding: 7px 12px; 141 | height: 44px; } 142 | -------------------------------------------------------------------------------- /events/assets/scss/_contact.scss: -------------------------------------------------------------------------------- 1 | /* Conact Home Page Section */ 2 | .contact{ 3 | background: #111111; 4 | } 5 | #conatiner-map{ 6 | width: 100%; 7 | height: 580px; 8 | } 9 | .title-forme{ 10 | font-size: 28px; 11 | margin-bottom: 20px; 12 | } 13 | .contact-item{ 14 | position: relative; 15 | text-align: center; 16 | i{ 17 | width: 70px; 18 | height: 70px; 19 | display: inline-block; 20 | line-height: 70px; 21 | font-size: 24px; 22 | text-align: center; 23 | margin-bottom: 30px; 24 | background: #2d2d2d; 25 | color: #fff; 26 | border-radius: 4px; 27 | -webkit-transition: .3s all; 28 | -o-transition: .3s all; 29 | transition: .3s all; 30 | } 31 | .contact-info{ 32 | h3{ 33 | color: $preset; 34 | font-size: 18px; 35 | margin-bottom: 10px; 36 | } 37 | p{ 38 | color: #fff; 39 | } 40 | } 41 | } 42 | 43 | /* Subscribe Form */ 44 | #subscribe{ 45 | background: #f2f2f2; 46 | } 47 | .subscribe-inner{ 48 | padding: 50px 0; 49 | text-align: center; 50 | .subscribe-title{ 51 | font-size: 36px; 52 | margin-bottom: 30px; 53 | } 54 | p{ 55 | color: #888; 56 | margin-bottom: 30px; 57 | } 58 | .sub-btn{ 59 | margin: 0; 60 | width: 12rem; 61 | padding: 18px 40px; 62 | min-width: 12rem; 63 | position: absolute; 64 | top: 0; 65 | bottom: 0; 66 | right: 0; 67 | i{ 68 | margin-right: 5px; 69 | } 70 | } 71 | .form-control{ 72 | position: relative; 73 | background: #fff; 74 | border: 1px solid $preset; 75 | border-radius: 0px; 76 | box-shadow: none; 77 | color: #888999; 78 | height: 55px; 79 | margin-right: -1px; 80 | width: 90%; 81 | } 82 | .form-control:focus{ 83 | color: #212121; 84 | background-color: #fff; 85 | border-color: $preset; 86 | outline: 0; 87 | } 88 | .form-inline{ 89 | position: relative; 90 | margin-bottom: 30px; 91 | margin: 0 auto; 92 | width: 100%; 93 | } 94 | } 95 | 96 | /* Contact Forme */ 97 | #google-map-area{ 98 | position: relative; 99 | .container-fluid{ 100 | padding-left: 0; 101 | padding-right: 0; 102 | } 103 | } 104 | 105 | .container-form{ 106 | left: 0%; 107 | padding: 40px 15px; 108 | margin-left: -15px; 109 | z-index: 99; 110 | .form-wrapper{ 111 | background-color: white; 112 | padding: 56px; 113 | box-shadow: 0 0 20px rgba(0,0,0,0.2); 114 | .form-group{ 115 | margin-bottom: 30px; 116 | } 117 | .form-control{ 118 | display: block; 119 | width: 100%; 120 | line-height: 26px; 121 | font-size: 14px; 122 | box-shadow: none; 123 | color: #848484; 124 | text-transform: capitalize; 125 | background: #f7f7f7; 126 | border: 1px solid transparent; 127 | padding: 7px 19px; 128 | border-radius: 0px; 129 | background-image: none; 130 | background-clip: padding-box; 131 | } 132 | .form-control:focus{ 133 | color: #212121; 134 | background-color: #fff; 135 | border-color: $preset; 136 | box-shadow: none; 137 | outline: 0; 138 | } 139 | } 140 | 141 | } 142 | .form-submit{ 143 | .btn-common{ 144 | width: 100%; 145 | } 146 | } 147 | 148 | .list-unstyled{ 149 | li{ 150 | margin-top: 10px; 151 | color: #dc3545!important; 152 | } 153 | } 154 | .text-danger { 155 | margin-top: 20px; 156 | font-size: 18px; 157 | } 158 | // Contact Page 159 | .form-control{ 160 | display: block; 161 | width: 100%; 162 | line-height: 27px; 163 | font-size: 14px; 164 | box-shadow: none; 165 | color: #848484; 166 | text-transform: capitalize; 167 | background: #f7f7f7; 168 | padding: 7px 19px; 169 | border: 1px solid #e5e5e5; 170 | border-radius: 0px; 171 | transition: all 500ms ease; 172 | -webkit-transition: all 500ms ease; 173 | -ms-transition: all 500ms ease; 174 | -o-transition: all 500ms ease; 175 | } 176 | .form-control:focus{ 177 | border-color: $preset; 178 | box-shadow: none; 179 | outline: 0; 180 | } 181 | 182 | -------------------------------------------------------------------------------- /events/assets/css/colors/blue.css: -------------------------------------------------------------------------------- 1 | a:hover{ 2 | color: #0eacf3; 3 | } 4 | .section-title:before{ 5 | background-color: #0eacf3; 6 | } 7 | .section-sub:before{ 8 | background-color: #0eacf3; 9 | } 10 | .slicknav_menu .slicknav_icon-bar{ 11 | background: #0eacf3; 12 | } 13 | .slicknav_btn{ 14 | border-color: #0eacf3; 15 | } 16 | .slicknav_nav a:hover, .slicknav_nav .active{ 17 | color: #0eacf3; 18 | } 19 | .slicknav_nav .dropdown li a.active{ 20 | color: #0eacf3; 21 | } 22 | .navbar li.active a.nav-link{ 23 | color: #fff!important; 24 | background: #0eacf3; 25 | } 26 | .navbar-expand-lg .navbar-nav li a:hover, .navbar-expand-lg .navbar-nav li .active>a, .navbar-expand-lg .navbar-nav li a:focus{ 27 | color: #0eacf3; 28 | } 29 | .dropdown .dropdown-item:focus, .dropdown .dropdown-item:hover, .dropdown .dropdown-item.active{ 30 | color: #0eacf3; 31 | } 32 | #hero-area .contents span.year{ 33 | color: #0eacf3; 34 | } 35 | .btn-common{ 36 | background-color: #0eacf3; 37 | } 38 | .btn-common:hover{ 39 | color: #fff; 40 | background-color: #3bb8f1; 41 | } 42 | .btn-border:hover{ 43 | background-color: #0eacf3; 44 | } 45 | .time-entry{ 46 | background: #0eacf3; 47 | } 48 | .team-item .overlay-social-icon .social-icons li a i{ 49 | background: #0eacf3; 50 | } 51 | .team-item .info-text h3 a:hover{ 52 | color: #0eacf3; 53 | } 54 | .schedule .schedule-tab-title .nav-tabs .nav-item.show .nav-link, 55 | .schedule .schedule-tab-title .nav-tabs .nav-link.active, 56 | .schedule .schedule-tab-title .nav-tabs .nav-item .nav-link:hover{ 57 | background: #0eacf3; 58 | border-color: #0eacf3; 59 | } 60 | .schedule .schedule-tab-title .nav-tabs .nav-item.show .nav-link, 61 | .schedule .schedule-tab-title .nav-tabs .nav-link.active, 62 | .schedule .schedule-tab-title .nav-tabs .nav-item .nav-link:hover{ 63 | background: #0eacf3; 64 | border: #0eacf3 transparent transparent transparent 65 | } 66 | .schedule .schedule-tab-title .nav-tabs .nav-item.show .nav-link:before, 67 | .schedule .schedule-tab-title .nav-tabs .nav-link.active:before, 68 | .schedule .schedule-tab-title .nav-tabs .nav-item .nav-link:hover:before{ 69 | border-color: #0eacf3 transparent transparent transparent 70 | } 71 | .schedule .tab-content .table>tbody .speakers .speaker h5 a:hover{ 72 | color: #0eacf3; 73 | } 74 | 75 | .services-item .services-content h3 a{ 76 | color: #0eacf3; 77 | } 78 | .services-item .icon i{ 79 | border-color: #0eacf3; 80 | background: #0eacf3; 81 | } 82 | .services-item:hover .icon i{ 83 | color: #0eacf3; 84 | } 85 | .counter-section .counter .icon i{ 86 | color: #0eacf3; 87 | } 88 | .icon-close, .icon-check{ 89 | color: #0eacf3; 90 | } 91 | #gallery-section .gallery-box .overlay-box i{ 92 | background: #0eacf3; 93 | } 94 | .blog-item .date .day{ 95 | color: #0eacf3; 96 | } 97 | .blog-item .descr h3 a:hover{ 98 | color: #0eacf3; 99 | } 100 | .post-thumb .date .day{ 101 | color: #0eacf3; 102 | } 103 | blockquote{ 104 | background: #0eacf3; 105 | } 106 | .post-content .post-title a:hover{ 107 | color: #0eacf3; 108 | } 109 | .post-meta a:hover{ 110 | color: #0eacf3; 111 | } 112 | .tags-area .post-tags a:hover{ 113 | background: #0eacf3; 114 | } 115 | .reply-link{ 116 | color: #0eacf3; 117 | } 118 | #sidebar .cat-list li a:hover{ 119 | color: #0eacf3; 120 | } 121 | #sidebar .tag a{ 122 | background: #0eacf3; 123 | } 124 | .slide-item .inner-box h3 a:hover{ 125 | color: #0eacf3; 126 | } 127 | .subscribe-inner .form-control:focus{ 128 | border-color: #0eacf3; 129 | } 130 | .contact-map .form-control:focus{ 131 | border-color: #0eacf3; 132 | } 133 | .form-control:focus{ 134 | border-color: #0eacf3; 135 | } 136 | .contact-item .contact-info h3{ 137 | color: #0eacf3; 138 | } 139 | .footer-area .footer-text p a{ 140 | color: #0eacf3; 141 | } 142 | .footer-area .footer-text .nav-inline .nav-link:hover{ 143 | color: #0eacf3; 144 | } 145 | .footer-2 ul li a:hover{ 146 | color: #0eacf3; 147 | } 148 | #copyright p a:hover{ 149 | color: #0eacf3; 150 | } 151 | a.back-to-top i{ 152 | background: #0eacf3; 153 | } 154 | .settings{ 155 | color: #0eacf3; 156 | } 157 | .pagination .page-item .page-link{ 158 | color: #0eacf3; 159 | } 160 | .pagination .page-item .page-link:hover{ 161 | background: #0eacf3; 162 | } 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## A Click Through Career Roadmap that Asks Users About Work Style Prefferences to Help Them Determine a Career Focus. 2 | 3 | ### Mockup 4 | 5 | ![alt text](https://github.com/GitCodeCareer/CodeCareer.org/blob/master/_assets/_images/mockup.png) 6 | 7 | --- 8 | ## MVP Features: 9 | + A Click Through Career Roadmap. 10 | + Save Roadmap As Linkable Page (CodeCareer.org/[UserName]/) 11 | + Export RoadMap As HTML Page for use on a Personal Website (Page Generated By DevGains.com). 12 | 13 | ## Information Architecture 14 | 15 | + /challenges 16 | + Display Challenges Page 17 | + /resources 18 | + Display Resources Page 19 | + /career-roadmaps/ 20 | + Start Question Series 21 | + /front-end/ 22 | + Startup (Vue.js -- Flexbox, CSS Grid, JS - ES5 & ES6) 23 | + Mid Size (React.js -- Flexbox, CSS Grid, JS - ES5 & ES6) 24 | + Cororate (Angular.js, Type Script -- Flexbox, CSS Grid, JS - ES5 & ES6) 25 | + /back-end/ 26 | + Startup (Ruby/Django/Node/Go) 27 | + Mid Size (PHP, C#) 28 | + Cororate (C#, Java) 29 | + /design-UX/ 30 | + User Surveys, Buyer Personas, Buyer Journeys, Color Psychology, UI Design Best Practices 31 | + /technical-UX/ 32 | + User Surveys, Site speed, Indexability, SEO 33 | 34 | --- 35 | 36 | ## Resources Page 37 | 38 | ### UX/UI 39 | http://uxarchive.com/ 40 | 41 | ### Stock photos that don’t suck 42 | https://medium.com/@dustin/stock-photos-that-dont-suck-62ae4bcbe01b 43 | 44 | ## Fonts 45 | http://100daysoffonts.com/ 46 | 47 | ### User Profile Images 48 | https://uifaces.co/ 49 | 50 | ### Graphics && Icons 51 | https://graphicburger.com/ 52 | https://undraw.co/ 53 | https://thenounproject.com/ 54 | https://iconmonstr.com/ 55 | https://icomoon.io/ 56 | 57 | ### CSS Amimations 58 | http://ianlunn.github.io/Hover/ 59 | 60 | ### Front-end Boiler Plate 61 | https://startbootstrap.com/ 62 | https://bootsnipp.com/ 63 | 64 | --- 65 | 66 | ## Learn Page 67 | https://www.theodinproject.com 68 | https://www.freecodecamp.org/ 69 | 70 | ## Challenges Page 71 | 72 | ### [301DaysOfCode](https://301daysofcode.com/) 73 | ### [30DaysOfJavaScript](https://JavaScript30.com/friend/SPAK) 74 | ### [100DaysOfCode](https://www.100daysofcode.com/) 75 | 76 | --- 77 | 78 | ## User Questions 79 | 80 | [Survey Results 30 Devs Polled](https://twitter.com/ioedeveloper/status/1042849527353552897) 81 | 82 | + How have you primarily learned web development? 83 | + Self-taught 84 | + College / University 85 | + Code bootcamp 86 | + What would you like help with? 87 | + Resume reviews 88 | + How do build your personal brand / network 89 | + Code reviews 90 | + Mock interviews (personality & culture) 91 | + Mock tech interviews (solving coding challenges) 92 | + Problem solving skills 93 | + Project & time management skills 94 | + Social strategies, charisma & soft-skills 95 | + Would you be interested in an internship? 96 | + Yes 97 | + No 98 | + Would you be interested in online hackathons? 99 | + Yes 100 | + No 101 | + How do you learn best? 102 | + A small interactive online instructor led course.. 103 | + 1 on 1 interactive teaching with an expert. 104 | + Self taught. 105 | + What team size do you think you'd enjoy most? 106 | + Solo - Work by myself. 107 | + Small team - Work with an intimate team. 108 | + Large team - Work with many people from different backgrounds. 109 | + What work pace do you think you'd enjoy most? 110 | + Fast paced 111 | + Laid back 112 | + Would you work at a company that pair programs? 113 | + No 114 | + Yes 115 | + What career paths interest you? 116 | + Databases (Structuring data & efficiency) 117 | + Statistical analysis (Data analysis & pattern recognition) 118 | + Front-end (User interfaces & website layout logic) 119 | + Backend (Developer interfaces & logic) 120 | + Design (Imagining creative eye catching user interfaces) 121 | + User Psychology (Using empathy and research to make products user friendly) 122 | + Team management (Mentoring & helping others focus on growth) 123 | + Co-founder (Many roles, long hours & high risk) 124 | + When do you plan to start applying for developer jobs? 125 | + Less than 6 months 126 | + More then 6 months 127 | + I'm not sure 128 | + Are you willing to relocate across country for a job? 129 | + Yes 130 | + No 131 | + What is your MBTI personality type? (https://www.16personalities.com) 132 | + How else can we help? 133 | -------------------------------------------------------------------------------- /events/assets/js/jquery.countdown.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * The Final Countdown for jQuery v2.2.0 (http://hilios.github.io/jQuery.countdown/) 3 | * Copyright (c) 2016 Edson Hilios 4 | * 5 | * Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | * this software and associated documentation files (the "Software"), to deal in 7 | * the Software without restriction, including without limitation the rights to 8 | * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | * the Software, and to permit persons to whom the Software is furnished to do so, 10 | * subject to the following conditions: 11 | * 12 | * The above copyright notice and this permission notice shall be included in all 13 | * copies or substantial portions of the Software. 14 | * 15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | */ 22 | !function(a){"use strict";"function"==typeof define&&define.amd?define(["jquery"],a):a(jQuery)}(function(a){"use strict";function b(a){if(a instanceof Date)return a;if(String(a).match(g))return String(a).match(/^[0-9]*$/)&&(a=Number(a)),String(a).match(/\-/)&&(a=String(a).replace(/\-/g,"/")),new Date(a);throw new Error("Couldn't cast `"+a+"` to a date object.")}function c(a){var b=a.toString().replace(/([.?*+^$[\]\\(){}|-])/g,"\\$1");return new RegExp(b)}function d(a){return function(b){var d=b.match(/%(-|!)?[A-Z]{1}(:[^;]+;)?/gi);if(d)for(var f=0,g=d.length;f1?c:d}var f=[],g=[],h={precision:100,elapse:!1,defer:!1};g.push(/^[0-9]*$/.source),g.push(/([0-9]{1,2}\/){2}[0-9]{4}( [0-9]{1,2}(:[0-9]{2}){2})?/.source),g.push(/[0-9]{4}([\/\-][0-9]{1,2}){2}( [0-9]{1,2}(:[0-9]{2}){2})?/.source),g=new RegExp(g.join("|"));var i={Y:"years",m:"months",n:"daysToMonth",d:"daysToWeek",w:"weeks",W:"weeksToMonth",H:"hours",M:"minutes",S:"seconds",D:"totalDays",I:"totalHours",N:"totalMinutes",T:"totalSeconds"},j=function(b,c,d){this.el=b,this.$el=a(b),this.interval=null,this.offset={},this.options=a.extend({},h),this.instanceNumber=f.length,f.push(this),this.$el.data("countdown-instance",this.instanceNumber),d&&("function"==typeof d?(this.$el.on("update.countdown",d),this.$el.on("stoped.countdown",d),this.$el.on("finish.countdown",d)):this.options=a.extend({},h,d)),this.setFinalDate(c),this.options.defer===!1&&this.start()};a.extend(j.prototype,{start:function(){null!==this.interval&&clearInterval(this.interval);var a=this;this.update(),this.interval=setInterval(function(){a.update.call(a)},this.options.precision)},stop:function(){clearInterval(this.interval),this.interval=null,this.dispatchEvent("stoped")},toggle:function(){this.interval?this.stop():this.start()},pause:function(){this.stop()},resume:function(){this.start()},remove:function(){this.stop.call(this),f[this.instanceNumber]=null,delete this.$el.data().countdownInstance},setFinalDate:function(a){this.finalDate=b(a)},update:function(){if(0===this.$el.closest("html").length)return void this.remove();var b,c=void 0!==a._data(this.el,"events"),d=new Date;b=this.finalDate.getTime()-d.getTime(),b=Math.ceil(b/1e3),b=!this.options.elapse&&b<0?0:Math.abs(b),this.totalSecsLeft!==b&&c&&(this.totalSecsLeft=b,this.elapsed=d>=this.finalDate,this.offset={seconds:this.totalSecsLeft%60,minutes:Math.floor(this.totalSecsLeft/60)%60,hours:Math.floor(this.totalSecsLeft/60/60)%24,days:Math.floor(this.totalSecsLeft/60/60/24)%7,daysToWeek:Math.floor(this.totalSecsLeft/60/60/24)%7,daysToMonth:Math.floor(this.totalSecsLeft/60/60/24%30.4368),weeks:Math.floor(this.totalSecsLeft/60/60/24/7),weeksToMonth:Math.floor(this.totalSecsLeft/60/60/24/7)%4,months:Math.floor(this.totalSecsLeft/60/60/24/30.4368),years:Math.abs(this.finalDate.getFullYear()-d.getFullYear()),totalDays:Math.floor(this.totalSecsLeft/60/60/24),totalHours:Math.floor(this.totalSecsLeft/60/60),totalMinutes:Math.floor(this.totalSecsLeft/60),totalSeconds:this.totalSecsLeft},this.options.elapse||0!==this.totalSecsLeft?this.dispatchEvent("update"):(this.stop(),this.dispatchEvent("finish")))},dispatchEvent:function(b){var c=a.Event(b+".countdown");c.finalDate=this.finalDate,c.elapsed=this.elapsed,c.offset=a.extend({},this.offset),c.strftime=d(this.offset),this.$el.trigger(c)}}),a.fn.countdown=function(){var b=Array.prototype.slice.call(arguments,0);return this.each(function(){var c=a(this).data("countdown-instance");if(void 0!==c){var d=f[c],e=b[0];j.prototype.hasOwnProperty(e)?d[e].apply(d,b.slice(1)):null===String(e).match(/^[$A-Z_][0-9A-Z_$]*$/i)?(d.setFinalDate.call(d,e),d.start()):a.error("Method %s does not exist on jQuery.countdown".replace(/\%s/gi,e))}else new j(this,b[0],b[1])})}}); -------------------------------------------------------------------------------- /events/assets/js/jquery.easing.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/ 3 | * 4 | * Uses the built in easing capabilities added In jQuery 1.1 5 | * to offer multiple easing options 6 | * 7 | * TERMS OF USE - EASING EQUATIONS 8 | * 9 | * Open source under the BSD License. 10 | * 11 | * Copyright © 2001 Robert Penner 12 | * All rights reserved. 13 | * 14 | * TERMS OF USE - jQuery Easing 15 | * 16 | * Open source under the BSD License. 17 | * 18 | * Copyright © 2008 George McGinley Smith 19 | * All rights reserved. 20 | * 21 | * Redistribution and use in source and binary forms, with or without modification, 22 | * are permitted provided that the following conditions are met: 23 | * 24 | * Redistributions of source code must retain the above copyright notice, this list of 25 | * conditions and the following disclaimer. 26 | * Redistributions in binary form must reproduce the above copyright notice, this list 27 | * of conditions and the following disclaimer in the documentation and/or other materials 28 | * provided with the distribution. 29 | * 30 | * Neither the name of the author nor the names of contributors may be used to endorse 31 | * or promote products derived from this software without specific prior written permission. 32 | * 33 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 34 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 35 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 36 | * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 37 | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE 38 | * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 39 | * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 40 | * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 41 | * OF THE POSSIBILITY OF SUCH DAMAGE. 42 | * 43 | */ 44 | jQuery.easing.jswing=jQuery.easing.swing;jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(e,f,a,h,g){return jQuery.easing[jQuery.easing.def](e,f,a,h,g)},easeInQuad:function(e,f,a,h,g){return h*(f/=g)*f+a},easeOutQuad:function(e,f,a,h,g){return -h*(f/=g)*(f-2)+a},easeInOutQuad:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f+a}return -h/2*((--f)*(f-2)-1)+a},easeInCubic:function(e,f,a,h,g){return h*(f/=g)*f*f+a},easeOutCubic:function(e,f,a,h,g){return h*((f=f/g-1)*f*f+1)+a},easeInOutCubic:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f+a}return h/2*((f-=2)*f*f+2)+a},easeInQuart:function(e,f,a,h,g){return h*(f/=g)*f*f*f+a},easeOutQuart:function(e,f,a,h,g){return -h*((f=f/g-1)*f*f*f-1)+a},easeInOutQuart:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f+a}return -h/2*((f-=2)*f*f*f-2)+a},easeInQuint:function(e,f,a,h,g){return h*(f/=g)*f*f*f*f+a},easeOutQuint:function(e,f,a,h,g){return h*((f=f/g-1)*f*f*f*f+1)+a},easeInOutQuint:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f*f+a}return h/2*((f-=2)*f*f*f*f+2)+a},easeInSine:function(e,f,a,h,g){return -h*Math.cos(f/g*(Math.PI/2))+h+a},easeOutSine:function(e,f,a,h,g){return h*Math.sin(f/g*(Math.PI/2))+a},easeInOutSine:function(e,f,a,h,g){return -h/2*(Math.cos(Math.PI*f/g)-1)+a},easeInExpo:function(e,f,a,h,g){return(f==0)?a:h*Math.pow(2,10*(f/g-1))+a},easeOutExpo:function(e,f,a,h,g){return(f==g)?a+h:h*(-Math.pow(2,-10*f/g)+1)+a},easeInOutExpo:function(e,f,a,h,g){if(f==0){return a}if(f==g){return a+h}if((f/=g/2)<1){return h/2*Math.pow(2,10*(f-1))+a}return h/2*(-Math.pow(2,-10*--f)+2)+a},easeInCirc:function(e,f,a,h,g){return -h*(Math.sqrt(1-(f/=g)*f)-1)+a},easeOutCirc:function(e,f,a,h,g){return h*Math.sqrt(1-(f=f/g-1)*f)+a},easeInOutCirc:function(e,f,a,h,g){if((f/=g/2)<1){return -h/2*(Math.sqrt(1-f*f)-1)+a}return h/2*(Math.sqrt(1-(f-=2)*f)+1)+a},easeInElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return e+l}if(!j){j=k*0.3}if(g=b}},d.prototype.validateInput=function(b){var c=a(b.target),d=c.data("bs.validator.errors");if(c.is('[type="radio"]')&&(c=this.$element.find('input[name="'+c.attr("name")+'"]')),this.$element.trigger(b=a.Event("validate.bs.validator",{relatedTarget:c[0]})),!b.isDefaultPrevented()){var e=this;this.runValidators(c).done(function(f){c.data("bs.validator.errors",f),f.length?e.showErrors(c):e.clearErrors(c),d&&f.toString()===d.toString()||(b=f.length?a.Event("invalid.bs.validator",{relatedTarget:c[0],detail:f}):a.Event("valid.bs.validator",{relatedTarget:c[0],detail:d}),e.$element.trigger(b)),e.toggleSubmit(),e.$element.trigger(a.Event("validated.bs.validator",{relatedTarget:c[0]}))})}},d.prototype.runValidators=function(b){function c(a){return b.data(a+"-error")||b.data("error")||"native"==a&&b[0].validationMessage||g.errors[a]}var e=[],f=a.Deferred(),g=this.options;return b.data("bs.validator.deferred")&&b.data("bs.validator.deferred").reject(),b.data("bs.validator.deferred",f),a.each(d.VALIDATORS,a.proxy(function(a,d){if((b.data(a)||"native"==a)&&!d.call(this,b)){var f=c(a);!~e.indexOf(f)&&e.push(f)}},this)),!e.length&&b.val()&&b.data("remote")?this.defer(b,function(){var d={};d[b.attr("name")]=b.val(),a.get(b.data("remote"),d).fail(function(a,b,d){e.push(c("remote")||d)}).always(function(){f.resolve(e)})}):f.resolve(e),f.promise()},d.prototype.validate=function(){var a=this.options.delay;return this.options.delay=0,this.$element.find(c).trigger("input.bs.validator"),this.options.delay=a,this},d.prototype.showErrors=function(b){var c=this.options.html?"html":"text";this.defer(b,function(){var d=b.closest(".form-group"),e=d.find(".help-block.with-errors"),f=d.find(".form-control-feedback"),g=b.data("bs.validator.errors");g.length&&(g=a("