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
ul { | |
text-align: justify; | |
} | |
ul li { | |
display: inline-block; | |
} | |
ul:after { | |
width: 100%; | |
height: 0px; | |
visibility: hidden; |
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
https://gist.github.com/iambibhas/4705378 | |
Here is a list of scopes to use in Sublime Text 2 snippets - | |
ActionScript: source.actionscript.2 | |
AppleScript: source.applescript | |
ASP: source.asp | |
Batch FIle: source.dosbatch | |
C#: source.cs | |
C++: source.c++ |
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
img-responsive { | |
width: auto\9; | |
max-width: 100%; | |
height: auto; | |
} |
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
{ | |
"BracketHighlighter": true, | |
"Color Highlighter": true, | |
"Emmet": true, | |
"ShowEncoding": true, | |
"always_show_minimap_viewport": true, | |
"auto_complete ": false, | |
"auto_complete_commit_on_tab": true, | |
"auto_complete_cycle": true, | |
"auto_complete_selector": false, |
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
[filter "lfs"] | |
[filter "lfs"] | |
clean = git-lfs clean %f | |
smudge = git-lfs smudge %f | |
required = true | |
[core] | |
autocrlf = false | |
safecrlf = false | |
editor = 'C:/Program Files/Sublime Text 3/sublime_text.exe' -w | |
[alias] |
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 maxHeight = 0; | |
$("div").each(function(){ | |
if ($(this).height() > maxHeight) { maxHeight = $(this).height(); } | |
}); | |
$("div").height(maxHeight); |
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
$("a[href='#top']").click(function() { | |
$("html, body").animate({ scrollTop: 0 }, "slow"); | |
return false; | |
}); | |
$('.point-1').click(function(e) { | |
e.preventDefault(); | |
$('html, body').animate({ | |
scrollTop: $('.item').offset().top |
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
$(function() { | |
var tabs = function (tabsLink, tabsCont, tabsActive) { | |
$(tabsLink).each(function(a){ | |
$(this).click(function(){ | |
$(tabsCont).removeClass('is-active').eq(a).addClass(tabsActive); | |
}); | |
}); | |
$(tabsLink).each(function(a){ | |
$(this).click(function(){ | |
$(tabsLink).removeClass(tabsActive); |
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
$(":empty").parent().hide(); | |
$(":empty").hide(); |
OlderNewer