🧘♂️
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
@charset "utf-8"; | |
/* vehicle derivative pre-content */ | |
*{ | |
/* gives everything a better box model for using percentage padding and margins. Borders get included in width sizes */ | |
-moz-box-sizing:border-box; | |
box-sizing:border-box; | |
padding:0; | |
margin:0; | |
} |
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
@charset "utf-8"; | |
/* vehicle derivative pre-content */ | |
*{ | |
/* gives everything a better box model for using percentage padding and margins. Borders get included in width sizes */ | |
-moz-box-sizing:border-box; | |
box-sizing:border-box; | |
padding:0; | |
margin:0; | |
} |
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
html { | |
font-family: "Helvetica Neue", sans-serif; | |
} | |
.container { | |
border: 1px solid rgba(0,0,0,0.25); | |
border-radius: 0.375em; | |
} | |
.container > div { | |
padding: 0.75em 1.5em; | |
} |
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
/* swp mock up */ | |
*{ | |
-moz-box-sizing:border-box; | |
box-sizing:border-box; | |
padding:0; | |
margin:0; | |
} | |
html { | |
/* box model */ |
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; |
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
* { | |
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
/** | |
* 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
<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
/** | |
* Listers feedback notes summary | |
*/ | |
*{ | |
padding:0; | |
margin:0; | |
-moz-box-sizing:border-box; | |
box-sizing:border-box; | |
} |