├── .gitignore ├── _site ├── README.md ├── assets │ ├── img │ │ ├── bg.jpg │ │ ├── header_bg.jpg │ │ ├── about │ │ │ └── about1.jpg │ │ ├── team │ │ │ ├── team01.jpg │ │ │ ├── team02.jpg │ │ │ ├── team03.jpg │ │ │ └── team04.jpg │ │ └── portfolio │ │ │ ├── folio01.jpg │ │ │ ├── folio02.jpg │ │ │ ├── folio03.jpg │ │ │ ├── folio04.jpg │ │ │ ├── folio05.jpg │ │ │ ├── folio06.jpg │ │ │ ├── folio07.jpg │ │ │ ├── folio08.jpg │ │ │ ├── folio09.jpg │ │ │ └── folio01-preview.jpg │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── js │ │ ├── jquery-func.js │ │ ├── retina.js │ │ ├── interact.js │ │ ├── smoothscroll.js │ │ ├── modernizr.custom.js │ │ └── jquery.easing.1.3.js │ └── css │ │ ├── animate-custom.css │ │ ├── main.css │ │ └── font-awesome.min.css └── index.html ├── assets ├── img │ ├── bg.jpg │ ├── header_bg.jpg │ ├── team │ │ ├── team01.jpg │ │ ├── team02.jpg │ │ ├── team03.jpg │ │ └── team04.jpg │ ├── about │ │ └── about1.jpg │ └── portfolio │ │ ├── folio01.jpg │ │ ├── folio02.jpg │ │ ├── folio03.jpg │ │ ├── folio04.jpg │ │ ├── folio05.jpg │ │ ├── folio06.jpg │ │ ├── folio07.jpg │ │ ├── folio08.jpg │ │ ├── folio09.jpg │ │ └── folio01-preview.jpg ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── js │ ├── jquery-func.js │ ├── retina.js │ ├── interact.js │ ├── smoothscroll.js │ ├── modernizr.custom.js │ └── jquery.easing.1.3.js └── css │ ├── animate-custom.css │ ├── main.css │ └── font-awesome.min.css ├── Gemfile ├── README.md ├── _layouts └── default.html ├── _config.yml ├── _includes ├── footer.html ├── scripts.html └── head.html ├── Gemfile.lock └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /_site/README.md: -------------------------------------------------------------------------------- 1 | # company-web 2 | A clean one-page website for a company 3 | 4 | -------------------------------------------------------------------------------- /assets/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/assets/img/bg.jpg -------------------------------------------------------------------------------- /_site/assets/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/_site/assets/img/bg.jpg -------------------------------------------------------------------------------- /assets/img/header_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/assets/img/header_bg.jpg -------------------------------------------------------------------------------- /assets/img/team/team01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/assets/img/team/team01.jpg -------------------------------------------------------------------------------- /assets/img/team/team02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/assets/img/team/team02.jpg -------------------------------------------------------------------------------- /assets/img/team/team03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/assets/img/team/team03.jpg -------------------------------------------------------------------------------- /assets/img/team/team04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/assets/img/team/team04.jpg -------------------------------------------------------------------------------- /assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/img/about/about1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/assets/img/about/about1.jpg -------------------------------------------------------------------------------- /_site/assets/img/header_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/_site/assets/img/header_bg.jpg -------------------------------------------------------------------------------- /_site/assets/img/about/about1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/_site/assets/img/about/about1.jpg -------------------------------------------------------------------------------- /_site/assets/img/team/team01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/_site/assets/img/team/team01.jpg -------------------------------------------------------------------------------- /_site/assets/img/team/team02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/_site/assets/img/team/team02.jpg -------------------------------------------------------------------------------- /_site/assets/img/team/team03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/_site/assets/img/team/team03.jpg -------------------------------------------------------------------------------- /_site/assets/img/team/team04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/_site/assets/img/team/team04.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/folio01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/assets/img/portfolio/folio01.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/folio02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/assets/img/portfolio/folio02.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/folio03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/assets/img/portfolio/folio03.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/folio04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/assets/img/portfolio/folio04.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/folio05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/assets/img/portfolio/folio05.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/folio06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/assets/img/portfolio/folio06.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/folio07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/assets/img/portfolio/folio07.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/folio08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/assets/img/portfolio/folio08.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/folio09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/assets/img/portfolio/folio09.jpg -------------------------------------------------------------------------------- /_site/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/_site/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /_site/assets/img/portfolio/folio01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/_site/assets/img/portfolio/folio01.jpg -------------------------------------------------------------------------------- /_site/assets/img/portfolio/folio02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/_site/assets/img/portfolio/folio02.jpg -------------------------------------------------------------------------------- /_site/assets/img/portfolio/folio03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/_site/assets/img/portfolio/folio03.jpg -------------------------------------------------------------------------------- /_site/assets/img/portfolio/folio04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/_site/assets/img/portfolio/folio04.jpg -------------------------------------------------------------------------------- /_site/assets/img/portfolio/folio05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/_site/assets/img/portfolio/folio05.jpg -------------------------------------------------------------------------------- /_site/assets/img/portfolio/folio06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/_site/assets/img/portfolio/folio06.jpg -------------------------------------------------------------------------------- /_site/assets/img/portfolio/folio07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/_site/assets/img/portfolio/folio07.jpg -------------------------------------------------------------------------------- /_site/assets/img/portfolio/folio08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/_site/assets/img/portfolio/folio08.jpg -------------------------------------------------------------------------------- /_site/assets/img/portfolio/folio09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/_site/assets/img/portfolio/folio09.jpg -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/img/portfolio/folio01-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/assets/img/portfolio/folio01-preview.jpg -------------------------------------------------------------------------------- /_site/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/_site/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /_site/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/_site/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /_site/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/_site/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /_site/assets/img/portfolio/folio01-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyller/company-web/HEAD/_site/assets/img/portfolio/folio01-preview.jpg -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'http://rubygems.org' 2 | 3 | gem 'rough' 4 | gem 'jekyll-paginate' 5 | gem 'jekyll-geo-pattern' 6 | gem 'kramdown' 7 | gem 'jekyll-github-metadata' -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # company-web 2 | A clean one-page website for a company 3 | 4 | ## Author 5 | - [lanlu8834](https://github.com/lanlu8834) 6 | - [Locky](https://github.com/junlulocky) 7 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {% include head.html %} 4 | 5 | 6 | {{content}} 7 | {% include footer.html %} 8 | {% include scripts.html %} 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | 2 | title: My Company # your title 3 | baseurl: '/company-web' #change it according to your repository name 4 | 5 | 6 | 7 | # Profile information 8 | yourname: Brown Smith ## put your name 9 | location: San Francisco , CA 10 | 11 | 12 | ## Social Profiles 13 | facebook: http://www.facebook.com ## your facebook account url 14 | twitter: http://www.twitter.com ## your twitter account url 15 | linkedin: http://www.linkedin.com ## your linkedin account url 16 | dribbble: http://www.dribble.com ## you dribbble account url 17 | foursquare: http://www.foursquare.com ## your foursquare account url 18 | 19 | 20 | 21 | # Update all the sections by editing the files inside _includes folder. 22 | -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
Copyright © 2017 Jekyller
5 |
6 | 12 |
13 |
14 |
15 |
-------------------------------------------------------------------------------- /assets/js/jquery-func.js: -------------------------------------------------------------------------------- 1 | // jQuery for page scrolling feature - requires jQuery Easing plugin 2 | $(function() { 3 | $('a.page-scroll').bind('click', function(event) { 4 | var $anchor = $(this); 5 | $('html, body').stop().animate({ 6 | scrollTop: $($anchor.attr('href')).offset().top 7 | }, 1500, 'easeInOutExpo'); 8 | event.preventDefault(); 9 | }); 10 | }); 11 | 12 | // Highlight the top nav as scrolling occurs 13 | $('body').scrollspy({ 14 | target: '.navbar-fixed-top' 15 | }) 16 | 17 | // Closes the Responsive Menu on Menu Item Click 18 | $('.navbar-collapse ul li a').click(function() { 19 | $('.navbar-toggle:visible').click(); 20 | }); -------------------------------------------------------------------------------- /_site/assets/js/jquery-func.js: -------------------------------------------------------------------------------- 1 | // jQuery for page scrolling feature - requires jQuery Easing plugin 2 | $(function() { 3 | $('a.page-scroll').bind('click', function(event) { 4 | var $anchor = $(this); 5 | $('html, body').stop().animate({ 6 | scrollTop: $($anchor.attr('href')).offset().top 7 | }, 1500, 'easeInOutExpo'); 8 | event.preventDefault(); 9 | }); 10 | }); 11 | 12 | // Highlight the top nav as scrolling occurs 13 | $('body').scrollspy({ 14 | target: '.navbar-fixed-top' 15 | }) 16 | 17 | // Closes the Responsive Menu on Menu Item Click 18 | $('.navbar-collapse ul li a').click(function() { 19 | $('.navbar-toggle:visible').click(); 20 | }); -------------------------------------------------------------------------------- /_includes/scripts.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Ascend 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 26 | 27 | -------------------------------------------------------------------------------- /assets/js/retina.js: -------------------------------------------------------------------------------- 1 | // retina.js, a high-resolution image swapper (http://retinajs.com), v0.0.2 2 | 3 | (function(){function t(e){this.path=e;var t=this.path.split("."),n=t.slice(0,t.length-1).join("."),r=t[t.length-1];this.at_2x_path=n+"@2x."+r}function n(e){this.el=e,this.path=new t(this.el.getAttribute("src"));var n=this;this.path.check_2x_variant(function(e){e&&n.swap()})}var e=typeof exports=="undefined"?window:exports;e.RetinaImagePath=t,t.confirmed_paths=[],t.prototype.is_external=function(){return!!this.path.match(/^https?\:/i)&&!this.path.match("//"+document.domain)},t.prototype.check_2x_variant=function(e){var n,r=this;if(this.is_external())return e(!1);if(this.at_2x_path in t.confirmed_paths)return e(!0);n=new XMLHttpRequest,n.open("HEAD",this.at_2x_path),n.onreadystatechange=function(){return n.readyState!=4?e(!1):n.status>=200&&n.status<=399?(t.confirmed_paths.push(r.at_2x_path),e(!0)):e(!1)},n.send()},e.RetinaImage=n,n.prototype.swap=function(e){function n(){t.el.complete?(t.el.setAttribute("width",t.el.offsetWidth),t.el.setAttribute("height",t.el.offsetHeight),t.el.setAttribute("src",e)):setTimeout(n,5)}typeof e=="undefined"&&(e=this.path.at_2x_path);var t=this;n()},e.devicePixelRatio>1&&(window.onload=function(){var e=document.getElementsByTagName("img"),t=[],r,i;for(r=0;r=200&&n.status<=399?(t.confirmed_paths.push(r.at_2x_path),e(!0)):e(!1)},n.send()},e.RetinaImage=n,n.prototype.swap=function(e){function n(){t.el.complete?(t.el.setAttribute("width",t.el.offsetWidth),t.el.setAttribute("height",t.el.offsetHeight),t.el.setAttribute("src",e)):setTimeout(n,5)}typeof e=="undefined"&&(e=this.path.at_2x_path);var t=this;n()},e.devicePixelRatio>1&&(window.onload=function(){var e=document.getElementsByTagName("img"),t=[],r,i;for(r=0;r here) { scroll = collection.get(i); break; } 80 | if (direction == 'prev' && i > 0 && positions[i] >= here) { scroll = collection.get(i-1); break; } 81 | } 82 | 83 | if (scroll) { 84 | $.scrollTo(scroll, { 85 | duration: 1000 86 | }); 87 | } 88 | 89 | return false; 90 | } 91 | 92 | $("#next,#prev").click(function() { 93 | return scroll($(this).attr('id')); 94 | }); 95 | 96 | // Added code 97 | // Register keypress events for the current page 98 | $(document).keypress(function(e) { 99 | switch(e.keyCode) { 100 | // User pressed "up" arrow 101 | case 38: 102 | return scroll("prev"); 103 | break; 104 | // User pressed "down" arrow 105 | case 40: 106 | return scroll("next"); 107 | break; 108 | } 109 | }); 110 | 111 | // End added code 112 | 113 | $(".scrolltoanchor").click(function() { 114 | $.scrollTo($($(this).attr("href")), { 115 | duration: 2000 116 | }); 117 | return false; 118 | }); 119 | 120 | }); 121 | 122 | 123 | 124 | -------------------------------------------------------------------------------- /_site/assets/js/interact.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | $("#closenav").hide(); 3 | $(".viewpopup").hide(); 4 | 5 | var closenav =$("#closenav"), 6 | navbtn =$("#navbtn"), 7 | navigation =$(".fullnavigation"), 8 | navigationbtns =$(".fullnavigation ul li a") 9 | imgdisplay=$(".imgdisplay"), 10 | contentbox =$(".contentbox"), 11 | 12 | navbtn.click(function() { 13 | navigation.animate({right:'0px'}, 1000, 'easeOutBack'); 14 | navbtn.fadeOut("500"); 15 | closenav.delay(1000).fadeIn("100"); 16 | }); 17 | 18 | closenav.click(function() { 19 | navigation.animate({right:'-200px'}, 1000); 20 | navbtn.delay(1000).fadeIn("200"); 21 | closenav.fadeOut("800"); 22 | }); 23 | 24 | navigationbtns.click(function() { 25 | navigation.animate({right:'-200px'}, 1000); 26 | navbtn.delay(1000).fadeIn("200"); 27 | closenav.fadeOut("800"); 28 | }); 29 | 30 | contentbox.mouseenter(function() { 31 | $(this).children().first().next().find("p").removeClass("animated fadeOutDown"); 32 | $(this).children().first().next().find("p").addClass("animated fadeInDown"); 33 | }); 34 | 35 | contentbox.mouseleave(function() { 36 | $(this).children().first().next().find("p").removeClass("animated fadeInDown"); 37 | $(this).children().first().next().find("p").addClass("animated fadeOutDown"); 38 | }); 39 | 40 | 41 | }); 42 | 43 | 44 | $(window).load(function(){ 45 | //Fade in Different Text 46 | var textlist = new Array("Reggae Music", "Skimboarding","The Beach", "Simple Design"); 47 | var timer; 48 | 49 | function textFade (index){ 50 | $("#update").hide().html(textlist[index]) 51 | .fadeIn(800); 52 | 53 | index++; 54 | timer = setTimeout(function(){ 55 | textFade(index % textlist.length); 56 | }, 2000); 57 | } 58 | $(document).ready(function(){ 59 | textFade(0); 60 | }); 61 | }); 62 | 63 | 64 | 65 | $(function() { 66 | 67 | function scroll(direction) { 68 | 69 | var scroll, i, 70 | positions = [], 71 | here = $(window).scrollTop(), 72 | collection = $('.section'); 73 | 74 | collection.each(function() { 75 | positions.push(parseInt($(this).offset()['top'],10)); 76 | }); 77 | 78 | for(i = 0; i < positions.length; i++) { 79 | if (direction == 'next' && positions[i] > here) { scroll = collection.get(i); break; } 80 | if (direction == 'prev' && i > 0 && positions[i] >= here) { scroll = collection.get(i-1); break; } 81 | } 82 | 83 | if (scroll) { 84 | $.scrollTo(scroll, { 85 | duration: 1000 86 | }); 87 | } 88 | 89 | return false; 90 | } 91 | 92 | $("#next,#prev").click(function() { 93 | return scroll($(this).attr('id')); 94 | }); 95 | 96 | // Added code 97 | // Register keypress events for the current page 98 | $(document).keypress(function(e) { 99 | switch(e.keyCode) { 100 | // User pressed "up" arrow 101 | case 38: 102 | return scroll("prev"); 103 | break; 104 | // User pressed "down" arrow 105 | case 40: 106 | return scroll("next"); 107 | break; 108 | } 109 | }); 110 | 111 | // End added code 112 | 113 | $(".scrolltoanchor").click(function() { 114 | $.scrollTo($($(this).attr("href")), { 115 | duration: 2000 116 | }); 117 | return false; 118 | }); 119 | 120 | }); 121 | 122 | 123 | 124 | -------------------------------------------------------------------------------- /assets/js/smoothscroll.js: -------------------------------------------------------------------------------- 1 | /** 2 | * SmoothScroll 3 | * This helper script created by DWUser.com. Copyright 2013 DWUser.com. 4 | * Dual-licensed under the GPL and MIT licenses. 5 | * All individual scripts remain property of their copyrighters. 6 | * Date: 10-Sep-2013 7 | * Version: 1.0.1 8 | */ 9 | if (!window['jQuery']) alert('The jQuery library must be included before the smoothscroll.js file. The plugin will not work propery.'); 10 | 11 | /** 12 | * jQuery.ScrollTo - Easy element scrolling using jQuery. 13 | * Copyright (c) 2007-2013 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com 14 | * Dual licensed under MIT and GPL. 15 | * @author Ariel Flesler 16 | * @version 1.4.3.1 17 | */ 18 | ;(function($){var h=$.scrollTo=function(a,b,c){$(window).scrollTo(a,b,c)};h.defaults={axis:'xy',duration:parseFloat($.fn.jquery)>=1.3?0:1,limit:true};h.window=function(a){return $(window)._scrollable()};$.fn._scrollable=function(){return this.map(function(){var a=this,isWin=!a.nodeName||$.inArray(a.nodeName.toLowerCase(),['iframe','#document','html','body'])!=-1;if(!isWin)return a;var b=(a.contentWindow||a).document||a.ownerDocument||a;return/webkit/i.test(navigator.userAgent)||b.compatMode=='BackCompat'?b.body:b.documentElement})};$.fn.scrollTo=function(e,f,g){if(typeof f=='object'){g=f;f=0}if(typeof g=='function')g={onAfter:g};if(e=='max')e=9e9;g=$.extend({},h.defaults,g);f=f||g.duration;g.queue=g.queue&&g.axis.length>1;if(g.queue)f/=2;g.offset=both(g.offset);g.over=both(g.over);return this._scrollable().each(function(){if(e==null)return;var d=this,$elem=$(d),targ=e,toff,attr={},win=$elem.is('html,body');switch(typeof targ){case'number':case'string':if(/^([+-]=)?\d+(\.\d+)?(px|%)?$/.test(targ)){targ=both(targ);break}targ=$(targ,this);if(!targ.length)return;case'object':if(targ.is||targ.style)toff=(targ=$(targ)).offset()}$.each(g.axis.split(''),function(i,a){var b=a=='x'?'Left':'Top',pos=b.toLowerCase(),key='scroll'+b,old=d[key],max=h.max(d,a);if(toff){attr[key]=toff[pos]+(win?0:old-$elem.offset()[pos]);if(g.margin){attr[key]-=parseInt(targ.css('margin'+b))||0;attr[key]-=parseInt(targ.css('border'+b+'Width'))||0}attr[key]+=g.offset[pos]||0;if(g.over[pos])attr[key]+=targ[a=='x'?'width':'height']()*g.over[pos]}else{var c=targ[pos];attr[key]=c.slice&&c.slice(-1)=='%'?parseFloat(c)/100*max:c}if(g.limit&&/^\d+$/.test(attr[key]))attr[key]=attr[key]<=0?0:Math.min(attr[key],max);if(!i&&g.queue){if(old!=attr[key])animate(g.onAfterFirst);delete attr[key]}});animate(g.onAfter);function animate(a){$elem.animate(attr,f,g.easing,a&&function(){a.call(this,e,g)})}}).end()};h.max=function(a,b){var c=b=='x'?'Width':'Height',scroll='scroll'+c;if(!$(a).is('html,body'))return a[scroll]-$(a)[c.toLowerCase()]();var d='client'+c,html=a.ownerDocument.documentElement,body=a.ownerDocument.body;return Math.max(html[scroll],body[scroll])-Math.min(html[d],body[d])};function both(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery); 19 | 20 | /** 21 | * jQuery.LocalScroll 22 | * Copyright (c) 2007-2010 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com 23 | * Dual licensed under MIT and GPL. 24 | * Date: 05/31/2010 25 | * @author Ariel Flesler 26 | * @version 1.2.8b 27 | **/ 28 | ;(function(b){function g(a,e,d){var h=e.hash.slice(1),f=document.getElementById(h)||document.getElementsByName(h)[0];if(f){a&&a.preventDefault();var c=b(d.target);if(!(d.lock&&c.is(":animated")||d.onBefore&&!1===d.onBefore(a,f,c))){d.stop&&c._scrollable().stop(!0);if(d.hash){var a=f.id==h?"id":"name",g=b(" ").attr(a,h).css({position:"absolute",top:b(window).scrollTop(),left:b(window).scrollLeft()});f[a]="";b("body").prepend(g);location=e.hash;g.remove();f[a]=h}c.scrollTo(f,d).trigger("notify.serialScroll", 29 | [f])}}}var i=location.href.replace(/#.*/,""),c=b.localScroll=function(a){b("body").localScroll(a)};c.defaults={duration:1E3,axis:"y",event:"click",stop:!0,target:window,reset:!0};c.hash=function(a){if(location.hash){a=b.extend({},c.defaults,a);a.hash=!1;if(a.reset){var e=a.duration;delete a.duration;b(a.target).scrollTo(0,a);a.duration=e}g(0,location,a)}};b.fn.localScroll=function(a){function e(){return!!this.href&&!!this.hash&&this.href.replace(this.hash,"")==i&&(!a.filter||b(this).is(a.filter))} 30 | a=b.extend({},c.defaults,a);return a.lazy?this.bind(a.event,function(d){var c=b([d.target,d.target.parentNode]).filter(e)[0];c&&g(d,c,a)}):this.find("a,area").filter(e).bind(a.event,function(b){g(b,this,a)}).end().end()}})(jQuery); 31 | 32 | // Initialize all .smoothScroll links 33 | jQuery(function($){ $.localScroll({filter:'.smoothScroll'}); }); 34 | -------------------------------------------------------------------------------- /_site/assets/js/smoothscroll.js: -------------------------------------------------------------------------------- 1 | /** 2 | * SmoothScroll 3 | * This helper script created by DWUser.com. Copyright 2013 DWUser.com. 4 | * Dual-licensed under the GPL and MIT licenses. 5 | * All individual scripts remain property of their copyrighters. 6 | * Date: 10-Sep-2013 7 | * Version: 1.0.1 8 | */ 9 | if (!window['jQuery']) alert('The jQuery library must be included before the smoothscroll.js file. The plugin will not work propery.'); 10 | 11 | /** 12 | * jQuery.ScrollTo - Easy element scrolling using jQuery. 13 | * Copyright (c) 2007-2013 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com 14 | * Dual licensed under MIT and GPL. 15 | * @author Ariel Flesler 16 | * @version 1.4.3.1 17 | */ 18 | ;(function($){var h=$.scrollTo=function(a,b,c){$(window).scrollTo(a,b,c)};h.defaults={axis:'xy',duration:parseFloat($.fn.jquery)>=1.3?0:1,limit:true};h.window=function(a){return $(window)._scrollable()};$.fn._scrollable=function(){return this.map(function(){var a=this,isWin=!a.nodeName||$.inArray(a.nodeName.toLowerCase(),['iframe','#document','html','body'])!=-1;if(!isWin)return a;var b=(a.contentWindow||a).document||a.ownerDocument||a;return/webkit/i.test(navigator.userAgent)||b.compatMode=='BackCompat'?b.body:b.documentElement})};$.fn.scrollTo=function(e,f,g){if(typeof f=='object'){g=f;f=0}if(typeof g=='function')g={onAfter:g};if(e=='max')e=9e9;g=$.extend({},h.defaults,g);f=f||g.duration;g.queue=g.queue&&g.axis.length>1;if(g.queue)f/=2;g.offset=both(g.offset);g.over=both(g.over);return this._scrollable().each(function(){if(e==null)return;var d=this,$elem=$(d),targ=e,toff,attr={},win=$elem.is('html,body');switch(typeof targ){case'number':case'string':if(/^([+-]=)?\d+(\.\d+)?(px|%)?$/.test(targ)){targ=both(targ);break}targ=$(targ,this);if(!targ.length)return;case'object':if(targ.is||targ.style)toff=(targ=$(targ)).offset()}$.each(g.axis.split(''),function(i,a){var b=a=='x'?'Left':'Top',pos=b.toLowerCase(),key='scroll'+b,old=d[key],max=h.max(d,a);if(toff){attr[key]=toff[pos]+(win?0:old-$elem.offset()[pos]);if(g.margin){attr[key]-=parseInt(targ.css('margin'+b))||0;attr[key]-=parseInt(targ.css('border'+b+'Width'))||0}attr[key]+=g.offset[pos]||0;if(g.over[pos])attr[key]+=targ[a=='x'?'width':'height']()*g.over[pos]}else{var c=targ[pos];attr[key]=c.slice&&c.slice(-1)=='%'?parseFloat(c)/100*max:c}if(g.limit&&/^\d+$/.test(attr[key]))attr[key]=attr[key]<=0?0:Math.min(attr[key],max);if(!i&&g.queue){if(old!=attr[key])animate(g.onAfterFirst);delete attr[key]}});animate(g.onAfter);function animate(a){$elem.animate(attr,f,g.easing,a&&function(){a.call(this,e,g)})}}).end()};h.max=function(a,b){var c=b=='x'?'Width':'Height',scroll='scroll'+c;if(!$(a).is('html,body'))return a[scroll]-$(a)[c.toLowerCase()]();var d='client'+c,html=a.ownerDocument.documentElement,body=a.ownerDocument.body;return Math.max(html[scroll],body[scroll])-Math.min(html[d],body[d])};function both(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery); 19 | 20 | /** 21 | * jQuery.LocalScroll 22 | * Copyright (c) 2007-2010 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com 23 | * Dual licensed under MIT and GPL. 24 | * Date: 05/31/2010 25 | * @author Ariel Flesler 26 | * @version 1.2.8b 27 | **/ 28 | ;(function(b){function g(a,e,d){var h=e.hash.slice(1),f=document.getElementById(h)||document.getElementsByName(h)[0];if(f){a&&a.preventDefault();var c=b(d.target);if(!(d.lock&&c.is(":animated")||d.onBefore&&!1===d.onBefore(a,f,c))){d.stop&&c._scrollable().stop(!0);if(d.hash){var a=f.id==h?"id":"name",g=b(" ").attr(a,h).css({position:"absolute",top:b(window).scrollTop(),left:b(window).scrollLeft()});f[a]="";b("body").prepend(g);location=e.hash;g.remove();f[a]=h}c.scrollTo(f,d).trigger("notify.serialScroll", 29 | [f])}}}var i=location.href.replace(/#.*/,""),c=b.localScroll=function(a){b("body").localScroll(a)};c.defaults={duration:1E3,axis:"y",event:"click",stop:!0,target:window,reset:!0};c.hash=function(a){if(location.hash){a=b.extend({},c.defaults,a);a.hash=!1;if(a.reset){var e=a.duration;delete a.duration;b(a.target).scrollTo(0,a);a.duration=e}g(0,location,a)}};b.fn.localScroll=function(a){function e(){return!!this.href&&!!this.hash&&this.href.replace(this.hash,"")==i&&(!a.filter||b(this).is(a.filter))} 30 | a=b.extend({},c.defaults,a);return a.lazy?this.bind(a.event,function(d){var c=b([d.target,d.target.parentNode]).filter(e)[0];c&&g(d,c,a)}):this.find("a,area").filter(e).bind(a.event,function(b){g(b,this,a)}).end().end()}})(jQuery); 31 | 32 | // Initialize all .smoothScroll links 33 | jQuery(function($){ $.localScroll({filter:'.smoothScroll'}); }); 34 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: http://rubygems.org/ 3 | specs: 4 | actionmailer (4.2.9) 5 | actionpack (= 4.2.9) 6 | actionview (= 4.2.9) 7 | activejob (= 4.2.9) 8 | mail (~> 2.5, >= 2.5.4) 9 | rails-dom-testing (~> 1.0, >= 1.0.5) 10 | actionpack (4.2.9) 11 | actionview (= 4.2.9) 12 | activesupport (= 4.2.9) 13 | rack (~> 1.6) 14 | rack-test (~> 0.6.2) 15 | rails-dom-testing (~> 1.0, >= 1.0.5) 16 | rails-html-sanitizer (~> 1.0, >= 1.0.2) 17 | actionview (4.2.9) 18 | activesupport (= 4.2.9) 19 | builder (~> 3.1) 20 | erubis (~> 2.7.0) 21 | rails-dom-testing (~> 1.0, >= 1.0.5) 22 | rails-html-sanitizer (~> 1.0, >= 1.0.3) 23 | activejob (4.2.9) 24 | activesupport (= 4.2.9) 25 | globalid (>= 0.3.0) 26 | activemodel (4.2.9) 27 | activesupport (= 4.2.9) 28 | builder (~> 3.1) 29 | activerecord (4.2.9) 30 | activemodel (= 4.2.9) 31 | activesupport (= 4.2.9) 32 | arel (~> 6.0) 33 | activesupport (4.2.9) 34 | i18n (~> 0.7) 35 | minitest (~> 5.1) 36 | thread_safe (~> 0.3, >= 0.3.4) 37 | tzinfo (~> 1.1) 38 | addressable (2.5.2) 39 | public_suffix (>= 2.0.2, < 4.0) 40 | arel (6.0.4) 41 | builder (3.2.3) 42 | color (1.8) 43 | colorator (1.1.0) 44 | concurrent-ruby (1.0.5) 45 | erubis (2.7.0) 46 | faraday (0.13.1) 47 | multipart-post (>= 1.2, < 3) 48 | ffi (1.9.18) 49 | forwardable-extended (2.6.0) 50 | geo_pattern (1.2.1) 51 | color (~> 1.5) 52 | globalid (0.4.0) 53 | activesupport (>= 4.2.0) 54 | i18n (0.9.0) 55 | concurrent-ruby (~> 1.0) 56 | jekyll (3.6.2) 57 | addressable (~> 2.4) 58 | colorator (~> 1.0) 59 | jekyll-sass-converter (~> 1.0) 60 | jekyll-watch (~> 1.1) 61 | kramdown (~> 1.14) 62 | liquid (~> 4.0) 63 | mercenary (~> 0.3.3) 64 | pathutil (~> 0.9) 65 | rouge (>= 1.7, < 3) 66 | safe_yaml (~> 1.0) 67 | jekyll-geo-pattern (0.4.1) 68 | geo_pattern (~> 1.2.1) 69 | jekyll 70 | jekyll-github-metadata (2.9.3) 71 | jekyll (~> 3.1) 72 | octokit (~> 4.0, != 4.4.0) 73 | jekyll-paginate (1.1.0) 74 | jekyll-sass-converter (1.5.0) 75 | sass (~> 3.4) 76 | jekyll-watch (1.5.0) 77 | listen (~> 3.0, < 3.1) 78 | kramdown (1.14.0) 79 | liquid (4.0.0) 80 | listen (3.0.8) 81 | rb-fsevent (~> 0.9, >= 0.9.4) 82 | rb-inotify (~> 0.9, >= 0.9.7) 83 | loofah (2.0.3) 84 | nokogiri (>= 1.5.9) 85 | mail (2.6.6) 86 | mime-types (>= 1.16, < 4) 87 | mercenary (0.3.6) 88 | middleware (0.1.0) 89 | mime-types (3.1) 90 | mime-types-data (~> 3.2015) 91 | mime-types-data (3.2016.0521) 92 | mini_portile2 (2.3.0) 93 | minitest (5.10.3) 94 | multipart-post (2.0.0) 95 | nokogiri (1.8.1) 96 | mini_portile2 (~> 2.3.0) 97 | octokit (4.7.0) 98 | sawyer (~> 0.8.0, >= 0.5.3) 99 | pathutil (0.16.0) 100 | forwardable-extended (~> 2.6) 101 | protobuf (3.7.5) 102 | activesupport (>= 3.2) 103 | middleware 104 | thor 105 | thread_safe 106 | public_suffix (3.0.0) 107 | rack (1.6.8) 108 | rack-test (0.6.3) 109 | rack (>= 1.0) 110 | rails (4.2.9) 111 | actionmailer (= 4.2.9) 112 | actionpack (= 4.2.9) 113 | actionview (= 4.2.9) 114 | activejob (= 4.2.9) 115 | activemodel (= 4.2.9) 116 | activerecord (= 4.2.9) 117 | activesupport (= 4.2.9) 118 | bundler (>= 1.3.0, < 2.0) 119 | railties (= 4.2.9) 120 | sprockets-rails 121 | rails-deprecated_sanitizer (1.0.3) 122 | activesupport (>= 4.2.0.alpha) 123 | rails-dom-testing (1.0.8) 124 | activesupport (>= 4.2.0.beta, < 5.0) 125 | nokogiri (~> 1.6) 126 | rails-deprecated_sanitizer (>= 1.0.1) 127 | rails-html-sanitizer (1.0.3) 128 | loofah (~> 2.0) 129 | railties (4.2.9) 130 | actionpack (= 4.2.9) 131 | activesupport (= 4.2.9) 132 | rake (>= 0.8.7) 133 | thor (>= 0.18.1, < 2.0) 134 | rake (12.0.0) 135 | rb-fsevent (0.10.2) 136 | rb-inotify (0.9.10) 137 | ffi (>= 0.5.0, < 2) 138 | rouge (2.2.1) 139 | rough (0.2.6) 140 | protobuf (>= 3.4) 141 | rails (~> 4.1) 142 | safe_yaml (1.0.4) 143 | sass (3.5.3) 144 | sass-listen (~> 4.0.0) 145 | sass-listen (4.0.0) 146 | rb-fsevent (~> 0.9, >= 0.9.4) 147 | rb-inotify (~> 0.9, >= 0.9.7) 148 | sawyer (0.8.1) 149 | addressable (>= 2.3.5, < 2.6) 150 | faraday (~> 0.8, < 1.0) 151 | sprockets (3.7.1) 152 | concurrent-ruby (~> 1.0) 153 | rack (> 1, < 3) 154 | sprockets-rails (3.2.0) 155 | actionpack (>= 4.0) 156 | activesupport (>= 4.0) 157 | sprockets (>= 3.0.0) 158 | thor (0.19.4) 159 | thread_safe (0.3.6) 160 | tzinfo (1.2.4) 161 | thread_safe (~> 0.1) 162 | 163 | PLATFORMS 164 | ruby 165 | 166 | DEPENDENCIES 167 | jekyll-geo-pattern 168 | jekyll-github-metadata 169 | jekyll-paginate 170 | kramdown 171 | rough 172 | 173 | BUNDLED WITH 174 | 1.15.3 175 | -------------------------------------------------------------------------------- /assets/js/modernizr.custom.js: -------------------------------------------------------------------------------- 1 | /* Modernizr 2.6.2 (Custom Build) | MIT & BSD 2 | * Build: http://modernizr.com/download/#-cssanimations-csstransitions-touch-shiv-cssclasses-prefixed-teststyles-testprop-testallprops-prefixes-domprefixes-load 3 | */ 4 | ;window.Modernizr=function(a,b,c){function z(a){j.cssText=a}function A(a,b){return z(m.join(a+";")+(b||""))}function B(a,b){return typeof a===b}function C(a,b){return!!~(""+a).indexOf(b)}function D(a,b){for(var d in a){var e=a[d];if(!C(e,"-")&&j[e]!==c)return b=="pfx"?e:!0}return!1}function E(a,b,d){for(var e in a){var f=b[a[e]];if(f!==c)return d===!1?a[e]:B(f,"function")?f.bind(d||b):f}return!1}function F(a,b,c){var d=a.charAt(0).toUpperCase()+a.slice(1),e=(a+" "+o.join(d+" ")+d).split(" ");return B(b,"string")||B(b,"undefined")?D(e,b):(e=(a+" "+p.join(d+" ")+d).split(" "),E(e,b,c))}var d="2.6.2",e={},f=!0,g=b.documentElement,h="modernizr",i=b.createElement(h),j=i.style,k,l={}.toString,m=" -webkit- -moz- -o- -ms- ".split(" "),n="Webkit Moz O ms",o=n.split(" "),p=n.toLowerCase().split(" "),q={},r={},s={},t=[],u=t.slice,v,w=function(a,c,d,e){var f,i,j,k,l=b.createElement("div"),m=b.body,n=m||b.createElement("body");if(parseInt(d,10))while(d--)j=b.createElement("div"),j.id=e?e[d]:h+(d+1),l.appendChild(j);return f=["­",'"].join(""),l.id=h,(m?l:n).innerHTML+=f,n.appendChild(l),m||(n.style.background="",n.style.overflow="hidden",k=g.style.overflow,g.style.overflow="hidden",g.appendChild(n)),i=c(l,a),m?l.parentNode.removeChild(l):(n.parentNode.removeChild(n),g.style.overflow=k),!!i},x={}.hasOwnProperty,y;!B(x,"undefined")&&!B(x.call,"undefined")?y=function(a,b){return x.call(a,b)}:y=function(a,b){return b in a&&B(a.constructor.prototype[b],"undefined")},Function.prototype.bind||(Function.prototype.bind=function(b){var c=this;if(typeof c!="function")throw new TypeError;var d=u.call(arguments,1),e=function(){if(this instanceof e){var a=function(){};a.prototype=c.prototype;var f=new a,g=c.apply(f,d.concat(u.call(arguments)));return Object(g)===g?g:f}return c.apply(b,d.concat(u.call(arguments)))};return e}),q.touch=function(){var c;return"ontouchstart"in a||a.DocumentTouch&&b instanceof DocumentTouch?c=!0:w(["@media (",m.join("touch-enabled),("),h,")","{#modernizr{top:9px;position:absolute}}"].join(""),function(a){c=a.offsetTop===9}),c},q.cssanimations=function(){return F("animationName")},q.csstransitions=function(){return F("transition")};for(var G in q)y(q,G)&&(v=G.toLowerCase(),e[v]=q[G](),t.push((e[v]?"":"no-")+v));return e.addTest=function(a,b){if(typeof a=="object")for(var d in a)y(a,d)&&e.addTest(d,a[d]);else{a=a.toLowerCase();if(e[a]!==c)return e;b=typeof b=="function"?b():b,typeof f!="undefined"&&f&&(g.className+=" "+(b?"":"no-")+a),e[a]=b}return e},z(""),i=k=null,function(a,b){function k(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x",d.insertBefore(c.lastChild,d.firstChild)}function l(){var a=r.elements;return typeof a=="string"?a.split(" "):a}function m(a){var b=i[a[g]];return b||(b={},h++,a[g]=h,i[h]=b),b}function n(a,c,f){c||(c=b);if(j)return c.createElement(a);f||(f=m(c));var g;return f.cache[a]?g=f.cache[a].cloneNode():e.test(a)?g=(f.cache[a]=f.createElem(a)).cloneNode():g=f.createElem(a),g.canHaveChildren&&!d.test(a)?f.frag.appendChild(g):g}function o(a,c){a||(a=b);if(j)return a.createDocumentFragment();c=c||m(a);var d=c.frag.cloneNode(),e=0,f=l(),g=f.length;for(;e",f="hidden"in a,j=a.childNodes.length==1||function(){b.createElement("a");var a=b.createDocumentFragment();return typeof a.cloneNode=="undefined"||typeof a.createDocumentFragment=="undefined"||typeof a.createElement=="undefined"}()}catch(c){f=!0,j=!0}})();var r={elements:c.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",shivCSS:c.shivCSS!==!1,supportsUnknownElements:j,shivMethods:c.shivMethods!==!1,type:"default",shivDocument:q,createElement:n,createDocumentFragment:o};a.html5=r,q(b)}(this,b),e._version=d,e._prefixes=m,e._domPrefixes=p,e._cssomPrefixes=o,e.testProp=function(a){return D([a])},e.testAllProps=F,e.testStyles=w,e.prefixed=function(a,b,c){return b?F(a,b,c):F(a,"pfx")},g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(f?" js "+t.join(" "):""),e}(this,this.document),function(a,b,c){function d(a){return"[object Function]"==o.call(a)}function e(a){return"string"==typeof a}function f(){}function g(a){return!a||"loaded"==a||"complete"==a||"uninitialized"==a}function h(){var a=p.shift();q=1,a?a.t?m(function(){("c"==a.t?B.injectCss:B.injectJs)(a.s,0,a.a,a.x,a.e,1)},0):(a(),h()):q=0}function i(a,c,d,e,f,i,j){function k(b){if(!o&&g(l.readyState)&&(u.r=o=1,!q&&h(),l.onload=l.onreadystatechange=null,b)){"img"!=a&&m(function(){t.removeChild(l)},50);for(var d in y[c])y[c].hasOwnProperty(d)&&y[c][d].onload()}}var j=j||B.errorTimeout,l=b.createElement(a),o=0,r=0,u={t:d,s:c,e:f,a:i,x:j};1===y[c]&&(r=1,y[c]=[]),"object"==a?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){k.call(this,r)},p.splice(e,0,u),"img"!=a&&(r||2===y[c]?(t.insertBefore(l,s?null:n),m(k,j)):y[c].push(l))}function j(a,b,c,d,f){return q=0,b=b||"j",e(a)?i("c"==b?v:u,a,b,this.i++,c,d,f):(p.splice(this.i++,0,a),1==p.length&&h()),this}function k(){var a=B;return a.loader={load:j,i:0},a}var l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={}.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=s?l:n.parentNode,l=a.opera&&"[object Opera]"==o.call(a.opera),l=!!b.attachEvent&&!l,u=r?"object":l?"script":"img",v=l?"script":u,w=Array.isArray||function(a){return"[object Array]"==o.call(a)},x=[],y={},z={timeout:function(a,b){return b.length&&(a.timeout=b[0]),a}},A,B;B=function(a){function b(a){var a=a.split("!"),b=x.length,c=a.pop(),d=a.length,c={url:c,origUrl:c,prefixes:a},e,f,g;for(f=0;f',a,""].join(""),l.id=h,(m?l:n).innerHTML+=f,n.appendChild(l),m||(n.style.background="",n.style.overflow="hidden",k=g.style.overflow,g.style.overflow="hidden",g.appendChild(n)),i=c(l,a),m?l.parentNode.removeChild(l):(n.parentNode.removeChild(n),g.style.overflow=k),!!i},x={}.hasOwnProperty,y;!B(x,"undefined")&&!B(x.call,"undefined")?y=function(a,b){return x.call(a,b)}:y=function(a,b){return b in a&&B(a.constructor.prototype[b],"undefined")},Function.prototype.bind||(Function.prototype.bind=function(b){var c=this;if(typeof c!="function")throw new TypeError;var d=u.call(arguments,1),e=function(){if(this instanceof e){var a=function(){};a.prototype=c.prototype;var f=new a,g=c.apply(f,d.concat(u.call(arguments)));return Object(g)===g?g:f}return c.apply(b,d.concat(u.call(arguments)))};return e}),q.touch=function(){var c;return"ontouchstart"in a||a.DocumentTouch&&b instanceof DocumentTouch?c=!0:w(["@media (",m.join("touch-enabled),("),h,")","{#modernizr{top:9px;position:absolute}}"].join(""),function(a){c=a.offsetTop===9}),c},q.cssanimations=function(){return F("animationName")},q.csstransitions=function(){return F("transition")};for(var G in q)y(q,G)&&(v=G.toLowerCase(),e[v]=q[G](),t.push((e[v]?"":"no-")+v));return e.addTest=function(a,b){if(typeof a=="object")for(var d in a)y(a,d)&&e.addTest(d,a[d]);else{a=a.toLowerCase();if(e[a]!==c)return e;b=typeof b=="function"?b():b,typeof f!="undefined"&&f&&(g.className+=" "+(b?"":"no-")+a),e[a]=b}return e},z(""),i=k=null,function(a,b){function k(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x",d.insertBefore(c.lastChild,d.firstChild)}function l(){var a=r.elements;return typeof a=="string"?a.split(" "):a}function m(a){var b=i[a[g]];return b||(b={},h++,a[g]=h,i[h]=b),b}function n(a,c,f){c||(c=b);if(j)return c.createElement(a);f||(f=m(c));var g;return f.cache[a]?g=f.cache[a].cloneNode():e.test(a)?g=(f.cache[a]=f.createElem(a)).cloneNode():g=f.createElem(a),g.canHaveChildren&&!d.test(a)?f.frag.appendChild(g):g}function o(a,c){a||(a=b);if(j)return a.createDocumentFragment();c=c||m(a);var d=c.frag.cloneNode(),e=0,f=l(),g=f.length;for(;e",f="hidden"in a,j=a.childNodes.length==1||function(){b.createElement("a");var a=b.createDocumentFragment();return typeof a.cloneNode=="undefined"||typeof a.createDocumentFragment=="undefined"||typeof a.createElement=="undefined"}()}catch(c){f=!0,j=!0}})();var r={elements:c.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",shivCSS:c.shivCSS!==!1,supportsUnknownElements:j,shivMethods:c.shivMethods!==!1,type:"default",shivDocument:q,createElement:n,createDocumentFragment:o};a.html5=r,q(b)}(this,b),e._version=d,e._prefixes=m,e._domPrefixes=p,e._cssomPrefixes=o,e.testProp=function(a){return D([a])},e.testAllProps=F,e.testStyles=w,e.prefixed=function(a,b,c){return b?F(a,b,c):F(a,"pfx")},g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(f?" js "+t.join(" "):""),e}(this,this.document),function(a,b,c){function d(a){return"[object Function]"==o.call(a)}function e(a){return"string"==typeof a}function f(){}function g(a){return!a||"loaded"==a||"complete"==a||"uninitialized"==a}function h(){var a=p.shift();q=1,a?a.t?m(function(){("c"==a.t?B.injectCss:B.injectJs)(a.s,0,a.a,a.x,a.e,1)},0):(a(),h()):q=0}function i(a,c,d,e,f,i,j){function k(b){if(!o&&g(l.readyState)&&(u.r=o=1,!q&&h(),l.onload=l.onreadystatechange=null,b)){"img"!=a&&m(function(){t.removeChild(l)},50);for(var d in y[c])y[c].hasOwnProperty(d)&&y[c][d].onload()}}var j=j||B.errorTimeout,l=b.createElement(a),o=0,r=0,u={t:d,s:c,e:f,a:i,x:j};1===y[c]&&(r=1,y[c]=[]),"object"==a?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){k.call(this,r)},p.splice(e,0,u),"img"!=a&&(r||2===y[c]?(t.insertBefore(l,s?null:n),m(k,j)):y[c].push(l))}function j(a,b,c,d,f){return q=0,b=b||"j",e(a)?i("c"==b?v:u,a,b,this.i++,c,d,f):(p.splice(this.i++,0,a),1==p.length&&h()),this}function k(){var a=B;return a.loader={load:j,i:0},a}var l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={}.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=s?l:n.parentNode,l=a.opera&&"[object Opera]"==o.call(a.opera),l=!!b.attachEvent&&!l,u=r?"object":l?"script":"img",v=l?"script":u,w=Array.isArray||function(a){return"[object Array]"==o.call(a)},x=[],y={},z={timeout:function(a,b){return b.length&&(a.timeout=b[0]),a}},A,B;B=function(a){function b(a){var a=a.split("!"),b=x.length,c=a.pop(),d=a.length,c={url:c,origUrl:c,prefixes:a},e,f,g;for(f=0;f li > a { 89 | color: #555; 90 | } 91 | .navbar-default .navbar-nav > .active > a, 92 | .navbar-default .navbar-nav > .active > a:hover, 93 | .navbar-default .navbar-nav > .active > a:focus { 94 | color: #38b5c9; 95 | background-color: #fff; 96 | 97 | 98 | } 99 | .navbar-default { 100 | background-color: #fff; 101 | padding: 12px 0; 102 | box-shadow: 0 0 3px #ccc; 103 | font-weight: 500; 104 | } 105 | .navbar-default .navbar-brand { 106 | font-weight: 700; 107 | font-size: 26px; 108 | color: #666; 109 | } 110 | .navbar-brand .fa { 111 | color: #38b5c9; 112 | } 113 | .navbar-toggle { 114 | border-color: transparent; 115 | border: 0px solid transparent; 116 | } 117 | .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { 118 | color: #38b5c9; 119 | } 120 | a img { 121 | background: white; 122 | } 123 | .odd a img { 124 | background: #f5f5f5; 125 | } 126 | /* Titles */ 127 | h1, h2, h3, h4, h5, h6 { 128 | font-weight: 200; 129 | color: #555; 130 | } 131 | h2 { 132 | font-size: 34px; 133 | color: #666; 134 | font-weight: 500; 135 | } 136 | h3 { 137 | font-size: 24px; 138 | font-weight: 500; 139 | } 140 | /* Paragraph & Typographic */ 141 | p { 142 | line-height: 26px; 143 | margin-bottom: 20px; 144 | } 145 | p.large { 146 | font-size: 18px; 147 | margin-bottom: 50px; 148 | } 149 | .centered { 150 | text-align: center; 151 | } 152 | strong { 153 | font-weight: 700; 154 | } 155 | em { 156 | font-weight: 300; 157 | } 158 | pre { 159 | background: #ebebeb; 160 | border: none; 161 | font-family: "Monaco"; 162 | font-size: 16px; 163 | color: #666; 164 | padding: 20px; 165 | line-height: 28px; 166 | } 167 | small { 168 | font-size: 12px; 169 | } 170 | blockquote, blockquote p { 171 | line-height: 28px; 172 | color: #999; 173 | font-weight: 300; 174 | font-style: italic; 175 | } 176 | blockquote { 177 | position: relative; 178 | margin: 0 0 40px -30px; 179 | padding-left: 30px; 180 | border-left: 5px solid #3498db; 181 | } 182 | blockquote cite { 183 | position: absolute; 184 | bottom: -25px; 185 | right: 0; 186 | font-size: 12px; 187 | font-style: italic; 188 | color: #333; 189 | font-weight: 300; 190 | } 191 | blockquote cite:before { 192 | content: "-- " 193 | } 194 | /* Images */ 195 | .overflow-image { 196 | margin-top: -65px; 197 | } 198 | /* Links */ 199 | a { 200 | color: #4abcc5; 201 | word-wrap: break-word; 202 | -webkit-transition: color 0.1s ease-in, background 0.1s ease-in; 203 | -moz-transition: color 0.1s ease-in, background 0.1s ease-in; 204 | -ms-transition: color 0.1s ease-in, background 0.1s ease-in; 205 | -o-transition: color 0.1s ease-in, background 0.1s ease-in; 206 | transition: color 0.1s ease-in, background 0.1s ease-in; 207 | } 208 | a:hover, a:focus { 209 | color: #c0392b; 210 | text-decoration: none; 211 | outline: 0; 212 | } 213 | a:before, a:after { 214 | -webkit-transition: color 0.1s ease-in, background 0.1s ease-in; 215 | -moz-transition: color 0.1s ease-in, background 0.1s ease-in; 216 | -ms-transition: color 0.1s ease-in, background 0.1s ease-in; 217 | -o-transition: color 0.1s ease-in, background 0.1s ease-in; 218 | transition: color 0.1s ease-in, background 0.1s ease-in; 219 | } 220 | /* ========================================================================== 221 | Wrap Sections 222 | ========================================================================== */ 223 | 224 | #headerwrap { 225 | background: url(../img/header_bg.jpg) no-repeat center top; 226 | padding-top: 200px; 227 | text-align: center; 228 | background-attachment: relative; 229 | background-position: center center; 230 | min-height: 650px; 231 | width: 100%; 232 | -webkit-background-size: 100%; 233 | -moz-background-size: 100%; 234 | -o-background-size: 100%; 235 | background-size: 100%; 236 | -webkit-background-size: cover; 237 | -moz-background-size: cover; 238 | -o-background-size: cover; 239 | background-size: cover; 240 | padding-bottom: 100px; 241 | margin-top: 70px; 242 | } 243 | #headerwrap h1 { 244 | color: #fff; 245 | font-size: 50px; 246 | font-weight: 400; 247 | text-align: center; 248 | letter-spacing: 2px; 249 | padding-bottom: 10px; 250 | } 251 | #headerwrap p { 252 | color: #fff; 253 | font-size: 22px; 254 | font-weight: 300; 255 | text-align: center; 256 | letter-spacing: 1px; 257 | } 258 | #headerwrap .btn { 259 | font-weight: 500; 260 | font-size: 17px; 261 | margin: 20px 0; 262 | background-color: rgba(255,255,255,0); 263 | color: #fff; 264 | border: 1px solid #fff; 265 | } 266 | #headerwrap .btn:hover, #headerwrap .btn:focus { 267 | color: #555; 268 | background-color: #fff; 269 | outline: 0px; 270 | border: 1px solid #fff; 271 | } 272 | #about { 273 | background: #fff; 274 | padding-top: 80px; 275 | padding-right: 0; 276 | padding-left: 0; 277 | padding-bottom: 60px; 278 | } 279 | #about img { 280 | margin-top: 0; 281 | } 282 | #services { 283 | background: url(../img/bg.jpg) no-repeat center center fixed; 284 | padding: 60px 0; 285 | text-align: center; 286 | background-size: cover; 287 | } 288 | #services .fa { 289 | color: #c0ed5d; 290 | } 291 | #services hr { 292 | display: block; 293 | height: 3px; 294 | border: 0; 295 | margin: 3em 0; 296 | padding: 0; 297 | background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), #71c9d6, rgba(255, 255, 255, 0)); 298 | background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0), #71c9d6, rgba(255, 255, 255, 0)); 299 | background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0), #71c9d6, rgba(255, 255, 255, 0)); 300 | background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), #71c9d6, rgba(255, 255, 255, 0)); 301 | width: 50%; 302 | left: 25%; 303 | position: relative; 304 | border: none; 305 | } 306 | #services p { 307 | text-align: center; 308 | color: #fff; 309 | } 310 | #services H2 { 311 | color: #fff; 312 | } 313 | #services H3 { 314 | color: #fff; 315 | } 316 | #team { 317 | background: url(../img/bg.jpg) no-repeat center center fixed; 318 | padding: 60px 0; 319 | text-align: center; 320 | background-size: cover; 321 | } 322 | #team hr { 323 | display: block; 324 | height: 3px; 325 | border: 0; 326 | margin: 3em 0; 327 | padding: 0; 328 | background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), #71c9d6, rgba(255, 255, 255, 0)); 329 | background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0), #71c9d6, rgba(255, 255, 255, 0)); 330 | background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0), #71c9d6, rgba(255, 255, 255, 0)); 331 | background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), #71c9d6, rgba(255, 255, 255, 0)); 332 | width: 50%; 333 | left: 25%; 334 | position: relative; 335 | border: none; 336 | } 337 | #team H2 { 338 | color: #fff; 339 | } 340 | #team p { 341 | color: #fff; 342 | } 343 | #team H4 { 344 | padding-top: 10px; 345 | color: #fff; 346 | font-weight:bold; 347 | } 348 | #team p.large { 349 | margin-top: 60px; 350 | margin-bottom: 30px; 351 | } 352 | #team .fa { 353 | width: 30px; 354 | height: 30px; 355 | margin: 0 3px; 356 | border-radius: 100%; 357 | font-size: 15px; 358 | line-height: 30px; 359 | outline: 0; 360 | color: #fff; 361 | background-color: #67c5d3; 362 | -webkit-transition: all .3s; 363 | -moz-transition: all .3s; 364 | transition: all .3s; 365 | } 366 | #team .fa:hover { 367 | background-color: #2ea0b1; 368 | } 369 | #portfolio { 370 | background-color: #fff; 371 | padding: 60px 0; 372 | } 373 | #portfolio .btn-default { 374 | border: 0; 375 | } 376 | #contact { 377 | background: #fff; 378 | padding: 60px 0; 379 | text-align: center; 380 | } 381 | #contact .form { 382 | padding: 30px 0; 383 | } 384 | #contact .fa { 385 | color: #3ab7cb; 386 | margin-bottom: 10px; 387 | } 388 | .copyrights{text-indent:-9999px;height:0;line-height:0;font-size:0;overflow:hidden;} 389 | #contact .btn { 390 | font-weight: 500; 391 | font-size: 18px; 392 | margin-top: 50px; 393 | background-color: #3ab7cb; 394 | color: #fff; 395 | border: 0; 396 | } 397 | #contact .btn:hover, #contact .btn:focus { 398 | background-color: #329cad; 399 | outline: 0px; 400 | } 401 | #greywrap { 402 | background: #f5f5f5; 403 | margin-top: 0px; 404 | padding: 50px 0; 405 | border-bottom: 1px solid #eee; 406 | text-align: center; 407 | } 408 | #greywrap .btn { 409 | font-family: "Raleway"; 410 | font-weight: 300; 411 | font-size: 20px; 412 | margin: 0 25px; 413 | background-color: #fff; 414 | border-color: #e2e2e2; 415 | color: #888; 416 | border-bottom: 0; 417 | letter-spacing: 1px; 418 | } 419 | #greywrap .btn:hover, #greywrap .btn:focus { 420 | margin: 0 25px; 421 | background-color: #fff; 422 | border-color: #a5cdd5; 423 | border-bottom: 0; 424 | outline: 0px; 425 | color: #a5cdd5; 426 | } 427 | #greywrap h2 { 428 | font-size: 30px; 429 | } 430 | #greywrap .callout { 431 | margin-bottom: 20px; 432 | } 433 | #greywrap p { 434 | font-size: 30px; 435 | } 436 | #greywrap .fa { 437 | font-size: 18px; 438 | margin-right: 4px; 439 | } 440 | #footerwrap { 441 | background: #2b2b2b; 442 | padding: 25px 0 15px 0; 443 | border-bottom: 1px solid #ddd; 444 | text-align: center; 445 | } 446 | #footerwrap span.copyright { 447 | line-height: 40px; 448 | color: #888; 449 | font-weight: 400; 450 | } 451 | #footerwrap span.copyright a { 452 | color: #888; 453 | border-bottom: 1px dotted; 454 | } 455 | #footerwrap span.copyright a:hover { 456 | color: #3ab7cb; 457 | text-decoration: none; 458 | } 459 | #footerwrap h4 { 460 | color: white; 461 | } 462 | ul.social-buttons { 463 | margin: 0; 464 | } 465 | ul.social-buttons li a { 466 | font-size: 24px; 467 | outline: 0; 468 | color: #999; 469 | } 470 | ul.social-buttons li a:hover, ul.social-buttons li a:focus, ul.social-buttons li a:active { 471 | color: #3ab7cb; 472 | } 473 | /* ========================================================================== 474 | Box Sections 475 | ========================================================================== */ 476 | 477 | .white h1 { 478 | color: #999; 479 | } 480 | .white p { 481 | padding-top: 25px; 482 | } 483 | 484 | /* ========================================================================== 485 | Image Mask 486 | ========================================================================== */ 487 | 488 | .grid figure { 489 | margin: 0; 490 | position: relative; 491 | border: 1px solid #ddd; 492 | } 493 | .grid figure img { 494 | width: 100%; 495 | display: block; 496 | position: relative; 497 | 498 | } 499 | .grid figcaption { 500 | position: absolute; 501 | top: 0; 502 | left: 0; 503 | padding: 20px; 504 | color: #fff; 505 | background-color: #34b1c4; 506 | } 507 | .grid figcaption h5 { 508 | margin: 0; 509 | padding-top: 0px; 510 | padding-left: 20px; 511 | padding-bottom: 5px; 512 | color: #fff; 513 | font-weight: 700; 514 | text-align: left; 515 | letter-spacing: 1px; 516 | } 517 | .grid figcaption a { 518 | text-align: left; 519 | padding: 5px 10px; 520 | margin-left: 20px; 521 | display: inline-block; 522 | background: #2f2f2f; 523 | color: #fff; 524 | font-size: 13px; 525 | } 526 | /* Caption Style */ 527 | .mask figure { 528 | overflow: hidden; 529 | } 530 | .mask figure img { 531 | -webkit-transition: -webkit-transform 0.4s; 532 | -moz-transition: -moz-transform 0.4s; 533 | transition: transform 0.4s; 534 | } 535 | .no-touch .mask figure:hover img, .mask figure.cs-hover img { 536 | -webkit-transform: translateY(-30px); 537 | -moz-transform: translateY(-30px); 538 | -ms-transform: translateY(-30px); 539 | transform: translateY(-30px); 540 | } 541 | .mask figcaption { 542 | height: 50px; 543 | width: 100%; 544 | top: auto; 545 | bottom: 0; 546 | opacity: 0; 547 | -webkit-transform: translateY(100%); 548 | -moz-transform: translateY(100%); 549 | -ms-transform: translateY(100%); 550 | transform: translateY(100%); 551 | -webkit-transition: -webkit-transform 0.4s, opacity 0.1s 0.3s; 552 | -moz-transition: -moz-transform 0.4s, opacity 0.1s 0.3s; 553 | transition: transform 0.4s, opacity 0.1s 0.3s; 554 | } 555 | .no-touch .mask figure:hover figcaption, .mask figure.cs-hover figcaption { 556 | opacity: 1; 557 | -webkit-transform: translateY(0px); 558 | -moz-transform: translateY(0px); 559 | -ms-transform: translateY(0px); 560 | transform: translateY(0px); 561 | -webkit-transition: -webkit-transform 0.4s, opacity 0.1s; 562 | -moz-transition: -moz-transform 0.4s, opacity 0.1s; 563 | transition: transform 0.4s, opacity 0.1s; 564 | } 565 | .mask figcaption a { 566 | position: absolute; 567 | top: 10px; 568 | bottom: 10px; 569 | right: 30px; 570 | } 571 | 572 | /* ========================================================================== 573 | MEDIA QUERIES 574 | ========================================================================== */ 575 | 576 | 577 | @media screen and (max-width:1050px), screen and (max-device-width:1050px) { 578 | body .header { 579 | background-attachment: scroll; 580 | } 581 | } 582 | 583 | /*ipad portrait*/ 584 | @media only screen and (min-device-width:768px) and (max-device-width : 1024px) and (orientation : portrait) { 585 | .header { 586 | background-attachment: scroll; 587 | } 588 | } 589 | 590 | @media screen and (max-width:769px) { 591 | #headerwrap h1 { 592 | font-size: 40px; 593 | } 594 | #headerwrap p { 595 | font-size: 20px; 596 | } 597 | } 598 | -------------------------------------------------------------------------------- /_site/assets/css/main.css: -------------------------------------------------------------------------------- 1 | html, button, input, select, textarea { 2 | color: #222; 3 | } 4 | body { 5 | font-size: 1em; 6 | line-height: 1.4; 7 | } 8 | 9 | /* 10 | * Remove text-shadow in selection highlight: h5bp.com/i 11 | * These selection rule sets have to be separate. 12 | * Customize the background color to match your design. 13 | */ 14 | 15 | ::-moz-selection { 16 | background: #f2c2c9; 17 | color: #a4003a; 18 | text-shadow: none; 19 | } 20 | ::selection { 21 | background: #16a085; 22 | color: #a4003a; 23 | text-shadow: none; 24 | } 25 | /* 26 | * A better looking default horizontal rule 27 | */ 28 | 29 | hr { 30 | display: block; 31 | height: 3px; 32 | border: 0; 33 | margin: 3em 0; 34 | padding: 0; 35 | background-image: -webkit-linear-gradient(left, #fff, #e6e6e6, #fff); 36 | background-image: -moz-linear-gradient(left, #fff, #e6e6e6, #fff); 37 | background-image: -ms-linear-gradient(left, #fff, #e6e6e6, #fff); 38 | background-image: -o-linear-gradient(left, #fff, #e6e6e6, #fff); 39 | width: 50%; 40 | left: 25%; 41 | position: relative; 42 | border: none; 43 | } 44 | 45 | img { 46 | vertical-align: middle; 47 | } 48 | /* 49 | * Allow only vertical resizing of textareas. 50 | */ 51 | 52 | textarea { 53 | resize: vertical; 54 | } 55 | /* ========================================================================== 56 | General styles 57 | ========================================================================== */ 58 | 59 | html, body { 60 | height: 100%; 61 | } 62 | body { 63 | font-family: "Lato", Helvetica, Arial, sans-serif; 64 | font-weight: 300; 65 | font-size: 16px; 66 | color: #555; 67 | -webkit-font-smoothing: antialiased; 68 | -webkit-overflow-scrolling: touch; 69 | } 70 | .col-md-4 { 71 | padding-bottom: 30px; 72 | } 73 | .row { 74 | margin-right: 0px; 75 | margin-left: -15px; 76 | } 77 | .modal-header { 78 | background: #34b1c4; 79 | } 80 | .modal-header h4 { 81 | color: white; 82 | font-weight: 700; 83 | letter-spacing: 1px; 84 | } 85 | .modal-footer { 86 | background: #34b1c4; 87 | } 88 | .navbar-default .navbar-nav > li > a { 89 | color: #555; 90 | } 91 | .navbar-default .navbar-nav > .active > a, 92 | .navbar-default .navbar-nav > .active > a:hover, 93 | .navbar-default .navbar-nav > .active > a:focus { 94 | color: #38b5c9; 95 | background-color: #fff; 96 | 97 | 98 | } 99 | .navbar-default { 100 | background-color: #fff; 101 | padding: 12px 0; 102 | box-shadow: 0 0 3px #ccc; 103 | font-weight: 500; 104 | } 105 | .navbar-default .navbar-brand { 106 | font-weight: 700; 107 | font-size: 26px; 108 | color: #666; 109 | } 110 | .navbar-brand .fa { 111 | color: #38b5c9; 112 | } 113 | .navbar-toggle { 114 | border-color: transparent; 115 | border: 0px solid transparent; 116 | } 117 | .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { 118 | color: #38b5c9; 119 | } 120 | a img { 121 | background: white; 122 | } 123 | .odd a img { 124 | background: #f5f5f5; 125 | } 126 | /* Titles */ 127 | h1, h2, h3, h4, h5, h6 { 128 | font-weight: 200; 129 | color: #555; 130 | } 131 | h2 { 132 | font-size: 34px; 133 | color: #666; 134 | font-weight: 500; 135 | } 136 | h3 { 137 | font-size: 24px; 138 | font-weight: 500; 139 | } 140 | /* Paragraph & Typographic */ 141 | p { 142 | line-height: 26px; 143 | margin-bottom: 20px; 144 | } 145 | p.large { 146 | font-size: 18px; 147 | margin-bottom: 50px; 148 | } 149 | .centered { 150 | text-align: center; 151 | } 152 | strong { 153 | font-weight: 700; 154 | } 155 | em { 156 | font-weight: 300; 157 | } 158 | pre { 159 | background: #ebebeb; 160 | border: none; 161 | font-family: "Monaco"; 162 | font-size: 16px; 163 | color: #666; 164 | padding: 20px; 165 | line-height: 28px; 166 | } 167 | small { 168 | font-size: 12px; 169 | } 170 | blockquote, blockquote p { 171 | line-height: 28px; 172 | color: #999; 173 | font-weight: 300; 174 | font-style: italic; 175 | } 176 | blockquote { 177 | position: relative; 178 | margin: 0 0 40px -30px; 179 | padding-left: 30px; 180 | border-left: 5px solid #3498db; 181 | } 182 | blockquote cite { 183 | position: absolute; 184 | bottom: -25px; 185 | right: 0; 186 | font-size: 12px; 187 | font-style: italic; 188 | color: #333; 189 | font-weight: 300; 190 | } 191 | blockquote cite:before { 192 | content: "-- " 193 | } 194 | /* Images */ 195 | .overflow-image { 196 | margin-top: -65px; 197 | } 198 | /* Links */ 199 | a { 200 | color: #4abcc5; 201 | word-wrap: break-word; 202 | -webkit-transition: color 0.1s ease-in, background 0.1s ease-in; 203 | -moz-transition: color 0.1s ease-in, background 0.1s ease-in; 204 | -ms-transition: color 0.1s ease-in, background 0.1s ease-in; 205 | -o-transition: color 0.1s ease-in, background 0.1s ease-in; 206 | transition: color 0.1s ease-in, background 0.1s ease-in; 207 | } 208 | a:hover, a:focus { 209 | color: #c0392b; 210 | text-decoration: none; 211 | outline: 0; 212 | } 213 | a:before, a:after { 214 | -webkit-transition: color 0.1s ease-in, background 0.1s ease-in; 215 | -moz-transition: color 0.1s ease-in, background 0.1s ease-in; 216 | -ms-transition: color 0.1s ease-in, background 0.1s ease-in; 217 | -o-transition: color 0.1s ease-in, background 0.1s ease-in; 218 | transition: color 0.1s ease-in, background 0.1s ease-in; 219 | } 220 | /* ========================================================================== 221 | Wrap Sections 222 | ========================================================================== */ 223 | 224 | #headerwrap { 225 | background: url(../img/header_bg.jpg) no-repeat center top; 226 | padding-top: 200px; 227 | text-align: center; 228 | background-attachment: relative; 229 | background-position: center center; 230 | min-height: 650px; 231 | width: 100%; 232 | -webkit-background-size: 100%; 233 | -moz-background-size: 100%; 234 | -o-background-size: 100%; 235 | background-size: 100%; 236 | -webkit-background-size: cover; 237 | -moz-background-size: cover; 238 | -o-background-size: cover; 239 | background-size: cover; 240 | padding-bottom: 100px; 241 | margin-top: 70px; 242 | } 243 | #headerwrap h1 { 244 | color: #fff; 245 | font-size: 50px; 246 | font-weight: 400; 247 | text-align: center; 248 | letter-spacing: 2px; 249 | padding-bottom: 10px; 250 | } 251 | #headerwrap p { 252 | color: #fff; 253 | font-size: 22px; 254 | font-weight: 300; 255 | text-align: center; 256 | letter-spacing: 1px; 257 | } 258 | #headerwrap .btn { 259 | font-weight: 500; 260 | font-size: 17px; 261 | margin: 20px 0; 262 | background-color: rgba(255,255,255,0); 263 | color: #fff; 264 | border: 1px solid #fff; 265 | } 266 | #headerwrap .btn:hover, #headerwrap .btn:focus { 267 | color: #555; 268 | background-color: #fff; 269 | outline: 0px; 270 | border: 1px solid #fff; 271 | } 272 | #about { 273 | background: #fff; 274 | padding-top: 80px; 275 | padding-right: 0; 276 | padding-left: 0; 277 | padding-bottom: 60px; 278 | } 279 | #about img { 280 | margin-top: 0; 281 | } 282 | #services { 283 | background: url(../img/bg.jpg) no-repeat center center fixed; 284 | padding: 60px 0; 285 | text-align: center; 286 | background-size: cover; 287 | } 288 | #services .fa { 289 | color: #c0ed5d; 290 | } 291 | #services hr { 292 | display: block; 293 | height: 3px; 294 | border: 0; 295 | margin: 3em 0; 296 | padding: 0; 297 | background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), #71c9d6, rgba(255, 255, 255, 0)); 298 | background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0), #71c9d6, rgba(255, 255, 255, 0)); 299 | background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0), #71c9d6, rgba(255, 255, 255, 0)); 300 | background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), #71c9d6, rgba(255, 255, 255, 0)); 301 | width: 50%; 302 | left: 25%; 303 | position: relative; 304 | border: none; 305 | } 306 | #services p { 307 | text-align: center; 308 | color: #fff; 309 | } 310 | #services H2 { 311 | color: #fff; 312 | } 313 | #services H3 { 314 | color: #fff; 315 | } 316 | #team { 317 | background: url(../img/bg.jpg) no-repeat center center fixed; 318 | padding: 60px 0; 319 | text-align: center; 320 | background-size: cover; 321 | } 322 | #team hr { 323 | display: block; 324 | height: 3px; 325 | border: 0; 326 | margin: 3em 0; 327 | padding: 0; 328 | background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), #71c9d6, rgba(255, 255, 255, 0)); 329 | background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0), #71c9d6, rgba(255, 255, 255, 0)); 330 | background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0), #71c9d6, rgba(255, 255, 255, 0)); 331 | background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), #71c9d6, rgba(255, 255, 255, 0)); 332 | width: 50%; 333 | left: 25%; 334 | position: relative; 335 | border: none; 336 | } 337 | #team H2 { 338 | color: #fff; 339 | } 340 | #team p { 341 | color: #fff; 342 | } 343 | #team H4 { 344 | padding-top: 10px; 345 | color: #fff; 346 | font-weight:bold; 347 | } 348 | #team p.large { 349 | margin-top: 60px; 350 | margin-bottom: 30px; 351 | } 352 | #team .fa { 353 | width: 30px; 354 | height: 30px; 355 | margin: 0 3px; 356 | border-radius: 100%; 357 | font-size: 15px; 358 | line-height: 30px; 359 | outline: 0; 360 | color: #fff; 361 | background-color: #67c5d3; 362 | -webkit-transition: all .3s; 363 | -moz-transition: all .3s; 364 | transition: all .3s; 365 | } 366 | #team .fa:hover { 367 | background-color: #2ea0b1; 368 | } 369 | #portfolio { 370 | background-color: #fff; 371 | padding: 60px 0; 372 | } 373 | #portfolio .btn-default { 374 | border: 0; 375 | } 376 | #contact { 377 | background: #fff; 378 | padding: 60px 0; 379 | text-align: center; 380 | } 381 | #contact .form { 382 | padding: 30px 0; 383 | } 384 | #contact .fa { 385 | color: #3ab7cb; 386 | margin-bottom: 10px; 387 | } 388 | .copyrights{text-indent:-9999px;height:0;line-height:0;font-size:0;overflow:hidden;} 389 | #contact .btn { 390 | font-weight: 500; 391 | font-size: 18px; 392 | margin-top: 50px; 393 | background-color: #3ab7cb; 394 | color: #fff; 395 | border: 0; 396 | } 397 | #contact .btn:hover, #contact .btn:focus { 398 | background-color: #329cad; 399 | outline: 0px; 400 | } 401 | #greywrap { 402 | background: #f5f5f5; 403 | margin-top: 0px; 404 | padding: 50px 0; 405 | border-bottom: 1px solid #eee; 406 | text-align: center; 407 | } 408 | #greywrap .btn { 409 | font-family: "Raleway"; 410 | font-weight: 300; 411 | font-size: 20px; 412 | margin: 0 25px; 413 | background-color: #fff; 414 | border-color: #e2e2e2; 415 | color: #888; 416 | border-bottom: 0; 417 | letter-spacing: 1px; 418 | } 419 | #greywrap .btn:hover, #greywrap .btn:focus { 420 | margin: 0 25px; 421 | background-color: #fff; 422 | border-color: #a5cdd5; 423 | border-bottom: 0; 424 | outline: 0px; 425 | color: #a5cdd5; 426 | } 427 | #greywrap h2 { 428 | font-size: 30px; 429 | } 430 | #greywrap .callout { 431 | margin-bottom: 20px; 432 | } 433 | #greywrap p { 434 | font-size: 30px; 435 | } 436 | #greywrap .fa { 437 | font-size: 18px; 438 | margin-right: 4px; 439 | } 440 | #footerwrap { 441 | background: #2b2b2b; 442 | padding: 25px 0 15px 0; 443 | border-bottom: 1px solid #ddd; 444 | text-align: center; 445 | } 446 | #footerwrap span.copyright { 447 | line-height: 40px; 448 | color: #888; 449 | font-weight: 400; 450 | } 451 | #footerwrap span.copyright a { 452 | color: #888; 453 | border-bottom: 1px dotted; 454 | } 455 | #footerwrap span.copyright a:hover { 456 | color: #3ab7cb; 457 | text-decoration: none; 458 | } 459 | #footerwrap h4 { 460 | color: white; 461 | } 462 | ul.social-buttons { 463 | margin: 0; 464 | } 465 | ul.social-buttons li a { 466 | font-size: 24px; 467 | outline: 0; 468 | color: #999; 469 | } 470 | ul.social-buttons li a:hover, ul.social-buttons li a:focus, ul.social-buttons li a:active { 471 | color: #3ab7cb; 472 | } 473 | /* ========================================================================== 474 | Box Sections 475 | ========================================================================== */ 476 | 477 | .white h1 { 478 | color: #999; 479 | } 480 | .white p { 481 | padding-top: 25px; 482 | } 483 | 484 | /* ========================================================================== 485 | Image Mask 486 | ========================================================================== */ 487 | 488 | .grid figure { 489 | margin: 0; 490 | position: relative; 491 | border: 1px solid #ddd; 492 | } 493 | .grid figure img { 494 | width: 100%; 495 | display: block; 496 | position: relative; 497 | 498 | } 499 | .grid figcaption { 500 | position: absolute; 501 | top: 0; 502 | left: 0; 503 | padding: 20px; 504 | color: #fff; 505 | background-color: #34b1c4; 506 | } 507 | .grid figcaption h5 { 508 | margin: 0; 509 | padding-top: 0px; 510 | padding-left: 20px; 511 | padding-bottom: 5px; 512 | color: #fff; 513 | font-weight: 700; 514 | text-align: left; 515 | letter-spacing: 1px; 516 | } 517 | .grid figcaption a { 518 | text-align: left; 519 | padding: 5px 10px; 520 | margin-left: 20px; 521 | display: inline-block; 522 | background: #2f2f2f; 523 | color: #fff; 524 | font-size: 13px; 525 | } 526 | /* Caption Style */ 527 | .mask figure { 528 | overflow: hidden; 529 | } 530 | .mask figure img { 531 | -webkit-transition: -webkit-transform 0.4s; 532 | -moz-transition: -moz-transform 0.4s; 533 | transition: transform 0.4s; 534 | } 535 | .no-touch .mask figure:hover img, .mask figure.cs-hover img { 536 | -webkit-transform: translateY(-30px); 537 | -moz-transform: translateY(-30px); 538 | -ms-transform: translateY(-30px); 539 | transform: translateY(-30px); 540 | } 541 | .mask figcaption { 542 | height: 50px; 543 | width: 100%; 544 | top: auto; 545 | bottom: 0; 546 | opacity: 0; 547 | -webkit-transform: translateY(100%); 548 | -moz-transform: translateY(100%); 549 | -ms-transform: translateY(100%); 550 | transform: translateY(100%); 551 | -webkit-transition: -webkit-transform 0.4s, opacity 0.1s 0.3s; 552 | -moz-transition: -moz-transform 0.4s, opacity 0.1s 0.3s; 553 | transition: transform 0.4s, opacity 0.1s 0.3s; 554 | } 555 | .no-touch .mask figure:hover figcaption, .mask figure.cs-hover figcaption { 556 | opacity: 1; 557 | -webkit-transform: translateY(0px); 558 | -moz-transform: translateY(0px); 559 | -ms-transform: translateY(0px); 560 | transform: translateY(0px); 561 | -webkit-transition: -webkit-transform 0.4s, opacity 0.1s; 562 | -moz-transition: -moz-transform 0.4s, opacity 0.1s; 563 | transition: transform 0.4s, opacity 0.1s; 564 | } 565 | .mask figcaption a { 566 | position: absolute; 567 | top: 10px; 568 | bottom: 10px; 569 | right: 30px; 570 | } 571 | 572 | /* ========================================================================== 573 | MEDIA QUERIES 574 | ========================================================================== */ 575 | 576 | 577 | @media screen and (max-width:1050px), screen and (max-device-width:1050px) { 578 | body .header { 579 | background-attachment: scroll; 580 | } 581 | } 582 | 583 | /*ipad portrait*/ 584 | @media only screen and (min-device-width:768px) and (max-device-width : 1024px) and (orientation : portrait) { 585 | .header { 586 | background-attachment: scroll; 587 | } 588 | } 589 | 590 | @media screen and (max-width:769px) { 591 | #headerwrap h1 { 592 | font-size: 40px; 593 | } 594 | #headerwrap p { 595 | font-size: 20px; 596 | } 597 | } 598 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | 6 | 7 | 8 | 29 | 30 | 31 |
32 |
33 |

Design, Development, Marketing.

34 |

Lorem ipsum dolor sit amet, cu menandri molestiae voluptaria eam,
35 | invidunt reprehendunt nec ei. Sonet regione consulatu vel id.

36 | See Our Works
37 |
38 | 39 | 40 | 41 |
42 |
43 |
44 |
45 |
46 |

About us

47 |

Lorem ipsum dolor sit amet, quo meis audire placerat eu, te eos porro veniam. An everti maiorum detracto mea. Eu eos dicam voluptaria, erant bonorum albucius et per, ei sapientem accommodare est. Saepe dolorum constituam ei vel. Te sit malorum ceteros repudiandae, ne tritani adipisci vis.

48 |

Why choose us?

49 |

Lorem ipsum dolor sit amet, quo meis audire placerat eu, te eos porro veniam. An everti maiorum detracto mea. Eu eos dicam voluptaria, erant bonorum albucius et per, ei sapientem accommodare est. Saepe dolorum constituam ei vel.

50 |
51 |
52 | 53 |
54 |
55 | 56 | 57 | 58 |
59 |
60 |
61 |

Our Services

62 |
63 |
64 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut eaque, laboriosam veritatis, quos non quis ad perspiciatis, totam corporis ea, alias ut unde.

65 |
66 |
67 |

Responsive Design

68 |

Erat imperdiet dissentias ea usu, alia aliquid corrumpit ea qui. Eu vim oratio conclusionemque, vel at errem nominavi delicatissimi.

69 |
70 |
71 |

Web Development

72 |

Erat imperdiet dissentias ea usu, alia aliquid corrumpit ea qui. Eu vim oratio conclusionemque, vel at errem nominavi delicatissimi.

73 |
74 |
75 |

Social Marketing

76 |

Erat imperdiet dissentias ea usu, alia aliquid corrumpit ea qui. Eu vim oratio conclusionemque, vel at errem nominavi delicatissimi.

77 |
78 |
79 |

eCommerce Consulting

80 |

Erat imperdiet dissentias ea usu, alia aliquid corrumpit ea qui. Eu vim oratio conclusionemque, vel at errem nominavi delicatissimi.

81 |
82 | 83 |
84 | 85 |
86 |
87 | 88 | 89 | 90 |
91 |
92 |
93 |

Our Portfolio

94 |
95 |
96 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut eaque, laboriosam veritatis, quos non quis ad perspiciatis, totam corporis ea, alias ut unde.

97 |
98 |
99 | 100 |
101 |
102 | 103 | 104 |
105 |
106 |
107 |
108 |
UX / UI
109 | More Details
110 | 111 |
112 | 113 |
114 | 115 |
116 | 117 | 118 | 119 | 121 | 122 | 142 | 143 | 144 | 145 |
146 |
147 |
148 |
149 |
CONCEPT
150 | More Details
151 | 152 |
153 | 154 |
155 | 156 |
157 | 158 | 159 |
160 |
161 |
162 |
163 |
MOBILE UI KIT
164 | More Details
165 | 166 |
167 | 168 |
169 | 170 |
171 |
172 | 173 | 174 | 175 |
176 |
177 |
178 |
179 |
180 |
CONCEPT
181 | More Details
182 | 183 |
184 | 185 |
186 | 187 |
188 | 189 | 190 |
191 |
192 |
193 |
194 |
UX / UI
195 | More Details
196 | 197 |
198 | 199 |
200 | 201 |
202 | 203 | 204 |
205 |
206 |
207 |
208 |
CMS INTEGRATION
209 | More Details
210 | 211 |
212 | 213 |
214 | 215 |
216 | 217 |
218 | 219 | 220 |
221 |
222 |
223 |
224 |
225 |
MOCKUP
226 | More Details
227 | 228 |
229 | 230 |
231 | 232 |
233 | 234 | 235 |
236 |
237 |
238 |
239 |
WEB ICONS
240 | More Details
241 | 242 |
243 | 244 |
245 | 246 |
247 | 248 | 249 |
250 |
251 |
252 |
253 |
UX / UI
254 | More Details
255 | 256 |
257 | 258 |
259 | 260 |
261 | 262 |
263 | 264 |
265 | 266 |
267 |
268 | 269 | 270 | 271 |
272 |
273 |
274 |

Meet Our Team

275 |
276 |
277 |

Jessica Wally

278 |

Albucius consectetuer eu nam. Saepe legendos vulputate eu quo, id mea comprehensam signifer.

279 |
280 |
281 |

Mike Sloan

282 |

Albucius consectetuer eu nam. Saepe legendos vulputate eu quo, id mea comprehensam signifer.

283 |
284 |
285 |

Michele Doe

286 |

Albucius consectetuer eu nam. Saepe legendos vulputate eu quo, id mea comprehensam signifer.

287 |
288 |
289 |

Larry Evans

290 |

Albucius consectetuer eu nam. Saepe legendos vulputate eu quo, id mea comprehensam signifer.

291 |
292 |
293 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut eaque, laboriosam veritatis, quos non quis ad perspiciatis, totam corporis ea, alias ut unde.

294 |
295 |
296 |
297 | 298 |
299 | 300 | 301 | 302 |
303 |
304 |
305 |

Contact Us

306 |
307 |
308 |

321 Awesome Street
309 | New York, NY 17022

310 |
311 |
312 |

info@companyname.com

313 |
314 |
315 |

+1 800 123 1234

316 |
317 |
318 |
319 |
320 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut eaque, laboriosam veritatis, quos non quis ad perspiciatis, totam corporis ea, alias ut unde.

321 |
322 |
323 |
324 | 325 |
326 |
327 | 328 |
329 |
330 | 331 |
332 |
333 | 334 |
335 |
336 |
337 | 338 |
339 |
340 | 341 | 342 |
343 |
344 | 345 | 346 | 347 | 348 | 349 | 350 | -------------------------------------------------------------------------------- /_site/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Ascend 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 28 | 29 | 30 | 31 | 32 | 53 | 54 | 55 |
56 |
57 |

Design, Development, Marketing.

58 |

Lorem ipsum dolor sit amet, cu menandri molestiae voluptaria eam,
59 | invidunt reprehendunt nec ei. Sonet regione consulatu vel id.

60 | See Our Works
61 |
62 | 63 | 64 | 65 |
66 |
67 |
68 |
69 |
70 |

About us

71 |

Lorem ipsum dolor sit amet, quo meis audire placerat eu, te eos porro veniam. An everti maiorum detracto mea. Eu eos dicam voluptaria, erant bonorum albucius et per, ei sapientem accommodare est. Saepe dolorum constituam ei vel. Te sit malorum ceteros repudiandae, ne tritani adipisci vis.

72 |

Why choose us?

73 |

Lorem ipsum dolor sit amet, quo meis audire placerat eu, te eos porro veniam. An everti maiorum detracto mea. Eu eos dicam voluptaria, erant bonorum albucius et per, ei sapientem accommodare est. Saepe dolorum constituam ei vel.

74 |
75 |
76 | 77 |
78 |
79 | 80 | 81 | 82 |
83 |
84 |
85 |

Our Services

86 |
87 |
88 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut eaque, laboriosam veritatis, quos non quis ad perspiciatis, totam corporis ea, alias ut unde.

89 |
90 |
91 |

Responsive Design

92 |

Erat imperdiet dissentias ea usu, alia aliquid corrumpit ea qui. Eu vim oratio conclusionemque, vel at errem nominavi delicatissimi.

93 |
94 |
95 |

Web Development

96 |

Erat imperdiet dissentias ea usu, alia aliquid corrumpit ea qui. Eu vim oratio conclusionemque, vel at errem nominavi delicatissimi.

97 |
98 |
99 |

Social Marketing

100 |

Erat imperdiet dissentias ea usu, alia aliquid corrumpit ea qui. Eu vim oratio conclusionemque, vel at errem nominavi delicatissimi.

101 |
102 |
103 |

eCommerce Consulting

104 |

Erat imperdiet dissentias ea usu, alia aliquid corrumpit ea qui. Eu vim oratio conclusionemque, vel at errem nominavi delicatissimi.

105 |
106 | 107 |
108 | 109 |
110 |
111 | 112 | 113 | 114 |
115 |
116 |
117 |

Our Portfolio

118 |
119 |
120 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut eaque, laboriosam veritatis, quos non quis ad perspiciatis, totam corporis ea, alias ut unde.

121 |
122 |
123 | 124 |
125 |
126 | 127 | 128 |
129 |
130 |
131 |
132 |
UX / UI
133 | More Details
134 | 135 |
136 | 137 |
138 | 139 |
140 | 141 | 142 | 143 | 145 | 146 | 166 | 167 | 168 | 169 |
170 |
171 |
172 |
173 |
CONCEPT
174 | More Details
175 | 176 |
177 | 178 |
179 | 180 |
181 | 182 | 183 |
184 |
185 |
186 |
187 |
MOBILE UI KIT
188 | More Details
189 | 190 |
191 | 192 |
193 | 194 |
195 |
196 | 197 | 198 | 199 |
200 |
201 |
202 |
203 |
204 |
CONCEPT
205 | More Details
206 | 207 |
208 | 209 |
210 | 211 |
212 | 213 | 214 |
215 |
216 |
217 |
218 |
UX / UI
219 | More Details
220 | 221 |
222 | 223 |
224 | 225 |
226 | 227 | 228 |
229 |
230 |
231 |
232 |
CMS INTEGRATION
233 | More Details
234 | 235 |
236 | 237 |
238 | 239 |
240 | 241 |
242 | 243 | 244 |
245 |
246 |
247 |
248 |
249 |
MOCKUP
250 | More Details
251 | 252 |
253 | 254 |
255 | 256 |
257 | 258 | 259 |
260 |
261 |
262 |
263 |
WEB ICONS
264 | More Details
265 | 266 |
267 | 268 |
269 | 270 |
271 | 272 | 273 |
274 |
275 |
276 |
277 |
UX / UI
278 | More Details
279 | 280 |
281 | 282 |
283 | 284 |
285 | 286 |
287 | 288 |
289 | 290 |
291 |
292 | 293 | 294 | 295 |
296 |
297 |
298 |

Meet Our Team

299 |
300 |
301 |

Jessica Wally

302 |

Albucius consectetuer eu nam. Saepe legendos vulputate eu quo, id mea comprehensam signifer.

303 |
304 |
305 |

Mike Sloan

306 |

Albucius consectetuer eu nam. Saepe legendos vulputate eu quo, id mea comprehensam signifer.

307 |
308 |
309 |

Michele Doe

310 |

Albucius consectetuer eu nam. Saepe legendos vulputate eu quo, id mea comprehensam signifer.

311 |
312 |
313 |

Larry Evans

314 |

Albucius consectetuer eu nam. Saepe legendos vulputate eu quo, id mea comprehensam signifer.

315 |
316 |
317 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut eaque, laboriosam veritatis, quos non quis ad perspiciatis, totam corporis ea, alias ut unde.

318 |
319 |
320 |
321 | 322 |
323 | 324 | 325 | 326 |
327 |
328 |
329 |

Contact Us

330 |
331 |
332 |

321 Awesome Street
333 | New York, NY 17022

334 |
335 |
336 |

info@companyname.com

337 |
338 |
339 |

+1 800 123 1234

340 |
341 |
342 |
343 |
344 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut eaque, laboriosam veritatis, quos non quis ad perspiciatis, totam corporis ea, alias ut unde.

345 |
346 |
347 |
348 | 349 |
350 |
351 | 352 |
353 |
354 | 355 |
356 |
357 | 358 |
359 |
360 |
361 | 362 |
363 |
364 | 365 | 366 |
367 |
368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 |
376 |
377 |
378 |
Copyright © 2017 Jekyller
379 |
380 | 386 |
387 |
388 |
389 |
390 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | -------------------------------------------------------------------------------- /assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.2.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.2.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.2.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}.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}@-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{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{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{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:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.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{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: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-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.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"} -------------------------------------------------------------------------------- /_site/assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.2.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.2.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.2.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}.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}@-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{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{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{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:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.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{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: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-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.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"} --------------------------------------------------------------------------------