🧘♂️
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
*{ | |
margin:0; | |
padding:0; | |
box-sizing:border-box; | |
} | |
html{ | |
font:81.25%/2 sans-serif; | |
color:#666; | |
background:#fff; | |
} |
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
/* emissions rating */ | |
*{ | |
margin:0; | |
padding:0; | |
box-sizing:border-box; | |
} | |
/*------------------------------------*\ | |
$EMISSIONS-RATING | |
\*------------------------------------*/ |
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
/* intrinsic ratio test */ | |
/* reset */ | |
*{box-sizing:border-box;padding:0;margin:0;} | |
/* clearfix */ | |
.cf:before,.cf:after, | |
.grid-wrap:before,.grid-wrap:after, | |
.grid:before,.grid:after, | |
.media:before,.media:after{content="";display:table;} |
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
/* breadcrumbs */ | |
*{padding:0;margin:0;} | |
body{font:13px/26px sans-serif;} | |
@media screen and (max-width:983px) { | |
body{font:13px/24px;} | |
} | |
@media screen and (max-width:763px) { | |
body{font:13px/22px;} | |
} | |
@media screen and (max-width:583px) { |
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
/** | |
* Listers feedback notes summary | |
*/ | |
*{ | |
padding:0; | |
margin:0; | |
-moz-box-sizing:border-box; | |
box-sizing:border-box; | |
} |
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
<video poster="{Static}/img/ui/video-poster.jpg" controls="controls"> | |
<!-- MP4 must be first for iPad! --> | |
<source src="http://f3.caranddriving.com/videos/2000/new_audia3_191208.mp4" type="video/mp4" /><!-- webkit --> | |
<!-- fallback to Flash: --> | |
<object type="" id="" name="" data="" width="746" height="280"> | |
<!-- Firefox uses the `data` attribute above, IE/Safari uses the param below --> | |
<param name="sllowfullscreen" value="true"> | |
<param name="allowscriptaccess" value="always"> | |
<param name="bgcolor" value="#000"> | |
<param name="flashvars" value='<%= PageData.PassedVirtualPath + "/playlist.xml" %>'> |
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
/** | |
* Scrolling shadows by @kizmarh and @leaverou | |
* Only works in browsers supporting background-attachment: local; & CSS gradients | |
* Degrades gracefully | |
*/ | |
html { | |
background: white; | |
font: 120% sans-serif; |
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
* { | |
box-sizing: border-box; | |
padding: 0; | |
margin: 0: | |
} | |
html { font: 13px/26px sans-serif; } | |
sub { vertical-align: -0.15em; font-size: 0.8em; line-height: 0.8; } | |
@media screen and (min-width: 800px) { |
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
* { | |
box-sizing: border-box; | |
padding: 0; | |
margin: 0: | |
} | |
html { font: 13px/26px sans-serif; } | |
sub { vertical-align: baseline; } | |
th, |
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
/* carousel demo */ | |
* { | |
-moz-box-sizing: border-box; | |
box-sizing: border-box; | |
padding: 0; | |
margin: 0; | |
} | |
html { | |
/* fonts */ | |
font:81.25%/2 sans-serif; |