Skip to content

Instantly share code, notes, and snippets.

@eyeboah
Forked from Rydgel/gist:4077979
Created February 10, 2013 20:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eyeboah/4750944 to your computer and use it in GitHub Desktop.
Save eyeboah/4750944 to your computer and use it in GitHub Desktop.
SASS:
%plane
box-shadow: 0 2px 5px rgba(#000, .1)
border-radius: 5px
%white-plane
@extend %plane
background-color: #fff
%off-white-plane
@extend %plane
background-color: #fcfcfc
header
@extend %white-plane
footer
@extend %off-white-plane
CSS:
header, footer {
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
border-radius: 5px; }
header {
background-color: white; }
footer {
background-color: #fcfcfc; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment