Skip to content

Instantly share code, notes, and snippets.

@lucasmazza
Created June 10, 2011 18:35
Show Gist options
  • Save lucasmazza/1019447 to your computer and use it in GitHub Desktop.
Save lucasmazza/1019447 to your computer and use it in GitHub Desktop.
Awesome boxes with stylus
boxify(light-color, dark-color)
background-color light-color
background -moz-linear-gradient(top, light-color, dark-color)
background -webkit-gradient(linear, 0% 0%, 0% 100%, from(light-color), to(dark-color))
border 1px solid darken(dark-color, 10%)
box-shadow 0 1px 0 0 lighten(light-color, 20%) inset
text-shadow 0 1px 0 #FFF
a.button
boxify #EDEDED, #CCC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment