This text is italic
This file contains hidden or 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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
This file contains hidden or 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
| HTML | |
| <section> | |
| <div id="pageresol"></div> | |
| </section> | |
| //Window Resize | |
| var wh = ""; | |
| wh = $(window).width() + ' x ' + $(window).height(); | |
| $('#pageresol').text(wh); |
This file contains hidden or 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 to Pocket Backtick command | |
| backtick.io | |
| NOTE : Each user might have his own bookmarklet code please fork this and change the command.js with your bookmarklet code. | |
| Log in to your pocket account and get your bookrmarklet from here | |
| https://getpocket.com/add | |
| ReadMore Here | |
| http://help.getpocket.com/customer/portal/articles/483627-using-the-pocket-bookmarklet |
This file contains hidden or 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
| /* | |
| Enjoy CSS : 3D Text Effect | |
| http://enjoycss.com/ | |
| */ | |
| .enjoy-css { | |
| -webkit-box-sizing: content-box; | |
| -moz-box-sizing: content-box; | |
| box-sizing: content-box; | |
| cursor: pointer; |
This file contains hidden or 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
| /* | |
| Neon Glow for Text and Text Area | |
| http://css-tricks.com/snippets/css/glowing-blue-input-highlights/ | |
| */ | |
| input[type=text], textarea { | |
| -webkit-transition: all 0.30s ease-in-out; | |
| -moz-transition: all 0.30s ease-in-out; | |
| -ms-transition: all 0.30s ease-in-out; | |
| -o-transition: all 0.30s ease-in-out; |
This file contains hidden or 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
| /* http://www.colourlovers.com/palettes */ | |
| var colors = {"Monokai":{"Black":"#272822","Pink":"#F92672","SkyBlue":"#66D9EF","LimeGreen":"#A6E22E","Orange":"#FD971F"},"GiantGoldFish":{"SkyBlue":"#69D2E7","MuddySkyBlue":"#A7DBD8","Muddy":"#E0E4CC","Orange":"#F38630","FlashyOrange":"#FA6900"},"Solarized":{"Base03":"#002B36","Base02":"#073642","Base01":"#586E75","Base00":"#657B83","Base0":"#839496","Base1":"#93A1A1","Base2":"#EEE8D5","Base3":"#FDF6E3","Yellow":"#B58900","Orange":"#CB4B16","Red":"#DC322F","Magenta":"#D33682","Violet":"#6C71C4","Blue":"#268BD2","Cyan":"#2AA198","Green":"#859900"},"Glow":{"Blue":"#51CBEE"}}; | |
| var colors = { | |
| "Monokai":{"Black":"#272822","Pink":"#F92672","SkyBlue":"#66D9EF","LimeGreen":"#A6E22E","Orange":"#FD971F"}, | |
| "GiantGoldFish":{"SkyBlue":"#69D2E7","MuddySkyBlue":"#A7DBD8","Muddy":"#E0E4CC","Orange":"#F38630","FlashyOrange":"#FA6900"}, | |
| "Solarized":{"Base03":"#002B36","Base02":"#073642","Base01":"#586E75","Base00":"#657B83", | |
| "Base0":"#839496","Base1":"#93A1A1","Base2":"#EEE |
This file contains hidden or 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
| /* | |
| Check Color Codes Online | |
| http://www.color-hex.com/ | |
| */ | |
| /* | |
| Solarized | |
| http://ethanschoonover.com/solarized | |
| */ |
This file contains hidden or 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
| <!-- | |
| Important Links | |
| http://snipplr.com/view.php?codeview&id=8121 | |
| http://www.99lime.com/elements/#list-example | |
| http://codylindley.com/jqueryselectors/ | |
| http://www.w3schools.com/jquery/jquery_ref_selectors.asp | |
| --> | |
| <html> | |
| <head> |
This file contains hidden or 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
| /* http://meyerweb.com/eric/tools/css/reset/ | |
| v2.0 | 20110126 | |
| License: none (public domain) | |
| */ | |
| /* Meyers CSS Reset Starts */ | |
| html, body, div, span, applet, object, iframe, | |
| h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
| a, abbr, acronym, address, big, cite, code, | |
| del, dfn, em, img, ins, kbd, q, s, samp, |
NewerOlder