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
.ir { | |
border:0; | |
font: 0/0 a; | |
text-shadow: none; | |
color: transparent; | |
background-color: transparent; | |
} |
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
// Custom Twitter Widget | |
$(document).ready(function() { | |
$.getScript('http://widgets.twimg.com/j/2/widget.js', function() { | |
new TWTR.Widget({ | |
version: 2, | |
type: 'profile', | |
rpp: 3, | |
id: 'twitterWidget', | |
interval: 9999, | |
width: "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
.clearfix:before, .clearfix:after {content: ""; display: table;} | |
.clearfix:after {clear: both;} | |
.clearfix {zoom: 1;} |
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
Show hidden characters
{ | |
"bold_folder_labels": true, | |
"close_windows_when_empty": true, | |
"color_scheme": "Packages/Color Scheme - Default/Twilight.tmTheme", | |
"detect-slow-plugins": false, | |
"enable_tab_scrolling": false, | |
"ensure_newline_at_eof_on_save": true, | |
"fade_fold_buttons": false, | |
"file_exclude_patterns": | |
[ |
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
## FILL ## | |
fill Sets fill color of the shape. | |
fill-opacity Sets fill opacity of the shape. | |
fill-rule Sets fill rule of the shape. | |
** example ** | |
fill: #ccc; | |
fill: rgba(0,0,0,.5); | |
fill: red; |
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
$('[placeholder]').focus(function() { | |
var input = $(this); | |
if (input.val() === input.attr('placeholder')) { | |
input.val(''); | |
input.removeClass('placeholder'); | |
} | |
}).blur(function() { | |
var input = $(this); | |
if (input.val() === '' || input.val() === input.attr('placeholder')) { | |
input.addClass('placeholder'); |
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
<?php | |
/** | |
* TinyMCE v4 Config | |
* | |
* A custom WordPress TinyMCE v4 configuration with styles (now called "Format") drop down menu with submenus. | |
* | |
* style_formats: http://www.tinymce.com/wiki.php/Configuration:style_formats | |
* | |
*/ |
This is a sample markdown file to help you write Markdown quickly :)
If you use the fabulous [Sublime Text 2/3 editor][ST] along with the [Markdown Preview plugin][MarkdownPreview], open your ST2 Palette with CMD+⇧+P
then choose Markdown Preview in browser
to see the result in your browser.
this is italic and this is bold . another italic and another bold
OlderNewer