Created
March 18, 2013 23:56
-
-
Save devinmcinnis/5192194 to your computer and use it in GitHub Desktop.
Double Box Shadow with CSS3
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
div { | |
width: 30px; | |
height: 30px; | |
border: 1px solid #295B76; | |
padding: 4px; | |
border-radius: 4px; | |
box-shadow: inset 0 0 0 1px #3B8CBF; | |
background: #14638e; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment