Skip to content

Instantly share code, notes, and snippets.

View mtcrutch's full-sized avatar

Matthew Crutchfield mtcrutch

View GitHub Profile
@mtcrutch
mtcrutch / snippets.css
Created October 25, 2012 18:13
snippets.css—a series of useful snippets I use all the time…
/* Simple top-bottom gradient */
div {
background: -webkit-linear-gradient(top, #fff, #000);
background: -moz-linear-gradient(top, #fff, #000);
background: -ms-linear-gradient(top, #fff, #000);
background: -o-linear-gradient(top, #fff, #000);
background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#000));
background: linear-gradient(top, #fff, #000);
}