Skip to content

Instantly share code, notes, and snippets.

@unix7
Created August 4, 2012 23:23
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 unix7/3260560 to your computer and use it in GitHub Desktop.
Save unix7/3260560 to your computer and use it in GitHub Desktop.
Shadow on Top of Image
/**
* Shadow on Top of Image
* @author: Affan Ruslan
* @link: Affanruslan.com
* Use shadow box for the primary (top) menu.
* Use inset shadow for the secondary (bottom) menu.
* Preview http://imgur.com/QTKNO
*/
.menu-primary {
-webkit-box-shadow: 0 4px 4px -2px #666;
-moz-box-shadow: 0 4px 4px -2px #666;
box-shadow: 0 4px 4px -2px #666;
}
.menu-secondary {
-webkit-box-shadow: inset 0 4px 4px -2px #666;
-moz-box-shadow: inset 0 4px 4px -2px #666;
box-shadow: inset 0 4px 4px -2px #666;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment