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 September 3, 2012 10:02
vehicle derivative pre-content
@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;
}
@mr-stezz
mr-stezz / dabblet.css
Created September 3, 2012 11:53
vehicle derivative pre-content
@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;
}
@mr-stezz
mr-stezz / dabblet.css
Created September 5, 2012 10:11 — forked from abitgone/dabblet.css
Untitled
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;
}
@mr-stezz
mr-stezz / dabblet.css
Created September 10, 2012 20:12
swp mock up
/* swp mock up */
*{
-moz-box-sizing:border-box;
box-sizing:border-box;
padding:0;
margin:0;
}
html {
/* box model */
@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;
@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 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 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.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 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;
}