Skip to content

Instantly share code, notes, and snippets.

View Chrisedmo's full-sized avatar

Chris Mousdale Chrisedmo

View GitHub Profile
@Chrisedmo
Chrisedmo / dabblet.css
Created January 10, 2012 19:58
CSS3 Grid generator
/* CSS3 Grid generator */
/* Change background size to change grid size */
background-image:
-webkit-linear-gradient(gray 1px, transparent 1px),
-webkit-linear-gradient(0, gray 1px, transparent 1px);
background-size:2.2rem 2.2rem, 2.2rem 2.2rem;
background-position:-1px -1px, -1px -1px
@Chrisedmo
Chrisedmo / dabblet.css
Created January 10, 2012 19:57
Experimenting with a side scroll for mobile nav
/**
* Experimenting with a side scroll for mobile nav
*/
topscroll {
display: none;
}
ul {
width: 1000px;
@Chrisedmo
Chrisedmo / dabblet.css
Created January 9, 2012 17:21
CSS3 Grid (via gradients)
/**
* CSS3 Grid (via gradients)
*/
background-color: #fff;
background-image:
linear-gradient(#eee .05em, transparent .05em);
background-size: 100% 2em; /*change this for grid height */