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
// Reset spaces between display inline-block els | |
.el { | |
letter-spacing: -.31em; | |
word-spacing: -.43em; | |
} | |
// Hide text | |
.el { | |
font: 0/0 a; | |
text-shadow: none; |
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
rsync -rtvz --exclude '.DS_Store' [homeDir] -e 'ssh -p 59184' [domain]:[path] |
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 | |
// bah | |
?> | |
<a href="#" title="<?php the_time('h:i a'); ?>" rel="bookmark"> | |
<time class="entry-date" datetime="<?php the_time('c'); ?>"><?php the_time( 'jS F Y' ); ?></time> | |
</a> |
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
if ($(html).hasClass('ie7')) { | |
$('.big-list').children('li').each(function() { | |
var $this = $(this), | |
txt = $this.text(); | |
$this.text('*' + txt); | |
}); | |
} |
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
if ($(html).hasClass('ie7')) { | |
$('input, textarea') | |
.focusin(function() { $(this).addClass('focus'); }) | |
.focusout(function() { $(this).removeClass('focus'); }); | |
} |
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
.selector { | |
property: value; | |
} | |
.selector { | |
.other-selector: { property: value; } | |
property: value; | |
} |
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
.bg('common/bg_more-about-host.png', , , 130px 9px); // This example returns error. | |
.bg('common/bg_more-about-host.png', ~'', ~'', 130px 9px); // This is ok. |
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
svn add $( svn status | sed -e '/^?/!d' -e 's/^?//' ) | |
svn delete $( svn status | sed -e '/^!/!d' -e 's/^!//' ) |
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
/*jslint browser: true, nomen: true */ | |
/*globals jQuery */ | |
(function ($) { | |
"use strict"; | |
var App = { | |
/** | |
* Init Function |
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
{ | |
"colorPrimary": "#E2299E", | |
"colorSecondary": "#8D7B87", | |
"colorBg": "#EBD5E4", | |
"colorGradient": ["#b9157f", "#db2b9b"], | |
"minRange": "0", | |
"maxRange": "250000", | |
"isEasing": "true", |
OlderNewer