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
Drag me to the bookmark bar:<br> | |
<a href="data:text/html, <body contenteditable style='font-family:Monaco,monospace;font-size:2rem;line-height:1.4;max-width:60rem;margin:0 auto;padding:4rem;'>">Notpad</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
.yelp-spinner { | |
opacity: 1; | |
background-color: rgba(255, 255, 255, 0.75); | |
} | |
.yelp-spinner .large-throbber-container { | |
background: url(http://f.cl.ly/items/1H1o3I3g3F3g343g190V/11_small.gif) no-repeat center; | |
background-color: white; | |
height: 92px; | |
width: 80px; |
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
body { | |
background: white; | |
} | |
#super-container { | |
-webkit-box-shadow: none; | |
box-shadow: none; | |
border: 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
(function() { | |
if ( ! $(document.body).is('.biz-details') ) { | |
return false; | |
} | |
var current_set = 0; | |
var num_sets; | |
var photos = []; | |
var photo_sets = []; | |
var timeout_id; |
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
// ---- | |
// Sass (v3.3.4) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
#yelp-ui-demos { | |
z-index: 9999; // "I'M THE TOP-MOST THING I PROMISE!" | |
-webkit-font-smoothing: antialiased; | |
position: fixed; | |
bottom: 10px; |
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
.ylist-bordered.reviews > li { | |
margin-right: -30px; | |
padding-right: 30px; | |
} | |
.feed-header:after { | |
margin-right: -15px; | |
border-color: #e5e5e1; | |
} |
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
/* | |
* http://aestheticallyloyal.com/public/optimize-legibility/ | |
* http://adamdscott.com/kerning-for-the-web/ | |
* http://ascott1.github.io/labs.adamdscott/kern/optimize.html | |
*/ | |
body { | |
text-rendering: optimizeLegibility !important; /* Deprecated I'm pretty sure */ | |
-webkit-font-feature-settings: "kern" 1; /* The new w3c hotness */ | |
-moz-font-feature-settings: "kern" 1; | |
font-feature-settings: "kern" 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
// Original Logic: | |
// --------------- | |
// | |
// this.initSidebarHeader=function(){ | |
// this.$node.on( | |
// "scroll",( | |
// function(){ | |
// var searchResultsPos=this.select("searchResultsSelector").offset(); | |
// if(searchResultsPos.top<=100){ | |
// this.$node.addClass("stuck"); |
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
sub EducateQuotes { | |
# | |
# Parameter: String. | |
# | |
# Returns: The string, with "educated" curly quote HTML entities. | |
# | |
# Example input: "Isn't this fun?" | |
# Example output: “Isn’t this fun?” | |
# |
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
/* Baz */ | |
.widen .biz-page-subheader .column-alpha { | |
width: 100%; | |
} | |
.widen .biz-page-subheader .column-beta { | |
width: 660px; | |
} | |
.widen .mapbox-map { |