This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Generated by http://www.colorzilla.com/gradient-editor | |
Colors: #008FCA, #33B2E6 | |
*/ | |
.blue_gradient_background { | |
background: #33b2e6; /* Old browsers */ | |
background: -moz-linear-gradient(top, #33b2e6 0%, #008fca 100%); /* FF3.6+ */ | |
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#33b2e6), color-stop(100%,#008fca)); /* Chrome,Safari4+ */ | |
background: -webkit-linear-gradient(top, #33b2e6 0%,#008fca 100%); /* Chrome10+,Safari5.1+ */ | |
background: -o-linear-gradient(top, #33b2e6 0%,#008fca 100%); /* Opera 11.10+ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Source: http://stackoverflow.com/questions/5057990/how-can-i-check-if-a-background-image-is-loaded | |
$('<img/>').attr('src', 'http://picture.de/image.png').load(function() { | |
$('body').css('background-image', 'url(http://picture.de/image.png)'); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(".tab_content").hide(); | |
$(".tab_content:first").show(); | |
$("ul.tablar li").click(function () { | |
$("ul.tablar li").removeClass("active"); | |
$(this).addClass("active"); | |
$(".tab_content").hide(); | |
var index = $("ul.tablar li").index(this); | |
// $('.tab_content').eq(index).fadeIn(500); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Source: http://forum.jquery.com/topic/jquery-selecting-all-but-first-child | |
// Most easy to understand, get all li elements except for the first one. | |
$("li:not(:first-child)") | |
// Get all li elements and slice off the first | |
$("li").slice(1) | |
// Get all li elements that are prepended by an li | |
$('ul li+li') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// add/remove class on event helpers | |
Helper.addClassOnEvent = function(el, ev, cl){ | |
var $el = $(el); | |
if(!$el.length || !cl || typeof ev !== "string" || typeof cl !== "string") { | |
return false; | |
} | |
$el.each(function(){ | |
// if(!Modernizr.hasEvent(ev, this)){ | |
// return true; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$facebook-color : hsla(222, 47%, 40%, 1); // #365397 | |
$twitter-color : hsla(198, 100%, 47%, 1); // #00a9f1 | |
$linkedin-color : hsla(203, 100%, 35%, 1); // #006db3 | |
social-platforms: facebook $facebook-color, | |
twitter $twitter-color, | |
linkedin $linkedin-color; | |
@mixin make-class-list-for-collection($collection, $index: 1, $prefix: "") { | |
$list: ""; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var debug = true; | |
var log = function(type){ debug && window.console && console[( type in console ? type : 'log' )].apply(console, Array.prototype.slice.call(arguments, ( type in console ? 1 : 0 ))); }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config --global alias.sync-gh-pages '!git push && git checkout gh-pages && git merge master && git push && git checkout master' |
OlderNewer