Created
March 2, 2012 15:11
-
-
Save bsodmike/1959061 to your computer and use it in GitHub Desktop.
Panel UI CSS from Zurb Foundation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* -------------------------------------------------- | |
Panels | |
-------------------------------------------------- */ | |
div.panel { | |
padding: 20px 20px 2px 20px; | |
background: #efefef; | |
background: -moz-linear-gradient(top, #FFFFFF 0%, #F4F4F4 100%); | |
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFFFFF), color-stop(100%,#F4F4F4)); | |
background: -o-linear-gradient(top, #ffffff 0%,#f4f4f4 100%); | |
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#F4F4F4',GradientType=0 ); | |
box-shadow: 0 2px 5px rgba(0,0,0,0.15); | |
-webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.15); | |
-moz-box-shadow: 0 2px 5px rgba(0,0,0,0.25); | |
margin: 0 0 20px 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment