TODO
Symmetric animations versus asymmetric
// ---- | |
// Sass (v3.3.0.rc.2) | |
// Compass (v1.0.0.alpha.17) | |
// ---- | |
@import "compass/css3/transform"; | |
@import "compass/css3/transition"; | |
// Prevent "jump" in content offset |
/* Prevent "jump" in content offset */ | |
.fixed-header body { | |
padding-top: 77px; | |
} | |
.fixed-header .app-header { | |
position: fixed; | |
top: 0; | |
width: 100%; | |
} |
.app-header { | |
top: 0; | |
width: 100%; | |
} | |
.app-header, | |
#dropper, | |
.autocomplete_choices { | |
z-index: 99999 !important; /* KAPOW! */ | |
position: fixed !important; |
<canvas>, -webkit-image-set |
TODO
Symmetric animations versus asymmetric
/* Baz */ | |
.widen .biz-page-subheader .column-alpha { | |
width: 100%; | |
} | |
.widen .biz-page-subheader .column-beta { | |
width: 660px; | |
} | |
.widen .mapbox-map { |
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?” | |
# |
// Original Logic: | |
// --------------- | |
// | |
// this.initSidebarHeader=function(){ | |
// this.$node.on( | |
// "scroll",( | |
// function(){ | |
// var searchResultsPos=this.select("searchResultsSelector").offset(); | |
// if(searchResultsPos.top<=100){ | |
// this.$node.addClass("stuck"); |
/* | |
* 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; |
.ylist-bordered.reviews > li { | |
margin-right: -30px; | |
padding-right: 30px; | |
} | |
.feed-header:after { | |
margin-right: -15px; | |
border-color: #e5e5e1; | |
} |