Skip to content

Instantly share code, notes, and snippets.

View mr-stezz's full-sized avatar
🧘‍♂️
Inquiring...

Mike Stezycki mr-stezz

🧘‍♂️
Inquiring...
View GitHub Profile
@mr-stezz
mr-stezz / dabblet.css
Created November 28, 2012 10:10
Untitled
*{
margin:0;
padding:0;
box-sizing:border-box;
}
html{
font:81.25%/2 sans-serif;
color:#666;
background:#fff;
}
@mr-stezz
mr-stezz / dabblet.css
Created November 15, 2012 10:04
emissions rating
/* emissions rating */
*{
margin:0;
padding:0;
box-sizing:border-box;
}
/*------------------------------------*\
$EMISSIONS-RATING
\*------------------------------------*/
@mr-stezz
mr-stezz / dabblet.css
Created November 9, 2012 10:30
intrinsic ratio test
/* 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;}
@mr-stezz
mr-stezz / dabblet.css
Created November 7, 2012 14:03
breadcrumbs
/* 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) {
@mr-stezz
mr-stezz / dabblet.css
Created September 26, 2012 07:58
Listers feedback notes summary
/**
* Listers feedback notes summary
*/
*{
padding:0;
margin:0;
-moz-box-sizing:border-box;
box-sizing:border-box;
}
@mr-stezz
mr-stezz / dabblet.html
Created September 19, 2012 15:50
Untitled
<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" %>'>
@mr-stezz
mr-stezz / dabblet.css
Created September 18, 2012 10:21
Scrolling shadows by @kizmarh and @LeaVerou
/**
* 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;
@mr-stezz
mr-stezz / dabblet.css
Created September 17, 2012 15:38 — forked from abitgone/dabblet.css
Untitled
* {
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) {
@mr-stezz
mr-stezz / dabblet.css
Created September 17, 2012 13:33
Untitled
* {
box-sizing: border-box;
padding: 0;
margin: 0:
}
html { font: 13px/26px sans-serif; }
sub { vertical-align: baseline; }
th,
@mr-stezz
mr-stezz / dabblet.css
Created September 11, 2012 10:33
carousel demo
/* carousel demo */
* {
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 0;
margin: 0;
}
html {
/* fonts */
font:81.25%/2 sans-serif;