Skip to content

Commit

Permalink
initial html import
Browse files Browse the repository at this point in the history
  • Loading branch information
kevit committed Apr 16, 2015
1 parent 7ca5524 commit 6af199c
Show file tree
Hide file tree
Showing 115 changed files with 22,314 additions and 0 deletions.
356 changes: 356 additions & 0 deletions index.html

Large diffs are not rendered by default.

Binary file added public/.DS_Store
Binary file not shown.
Binary file added public/css/.DS_Store
Binary file not shown.
616 changes: 616 additions & 0 deletions public/css/styles-2.css

Large diffs are not rendered by default.

616 changes: 616 additions & 0 deletions public/css/styles-3.css

Large diffs are not rendered by default.

616 changes: 616 additions & 0 deletions public/css/styles-4.css

Large diffs are not rendered by default.

616 changes: 616 additions & 0 deletions public/css/styles.css

Large diffs are not rendered by default.

Binary file added public/images/.DS_Store
Binary file not shown.
Binary file added public/images/profile.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/js/.DS_Store
Binary file not shown.
33 changes: 33 additions & 0 deletions public/js/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
jQuery(document).ready(function($) {

/* ======= Scrollspy ======= */
$('body').scrollspy({ target: '#header', offset: 400});

/* ======= Fixed header when scrolled ======= */

$(window).bind('scroll', function() {
if ($(window).scrollTop() > 50) {
$('#header').addClass('navbar-fixed-top');
}
else {
$('#header').removeClass('navbar-fixed-top');
}
});

/* ======= ScrollTo ======= */
$('a.scrollto').on('click', function(e){

//store hash
var target = this.hash;

e.preventDefault();

$('body').scrollTo(target, 800, {offset: -70, 'axis':'y', easing:'easeOutQuad'});
//Collapse mobile menu after clicking
if ($('.navbar-collapse').hasClass('in')){
$('.navbar-collapse').removeClass('in').addClass('collapse');
}

});

});
1 change: 1 addition & 0 deletions public/js/min/main-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added public/less/.DS_Store
Binary file not shown.
Loading

0 comments on commit 6af199c

Please sign in to comment.