Last active
December 13, 2015 20:38
-
-
Save gavin-hall/4971422 to your computer and use it in GitHub Desktop.
CSS Visual Effects
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
/* Visual Effects | |
------------------------------------------------------- */ | |
.selector { | |
box-shadow: 0px 2px 5px rgba(0,0,0,0.2); | |
-webkit-box-shadow: 0px 2px 5px rgba(0,0,0,0.2); | |
-moz-box-shadow: 0px 2px 5px rgba(0,0,0,0.2); | |
border-radius: px; | |
-webkit-border-radius: px; | |
-moz-border-radius: px; | |
-webkit-border-top-left-radius: px; | |
-webkit-border-top-right-radius: px; | |
-moz-border-radius-topleft: px; | |
-moz-border-radius-topright: px; | |
border-top-left-radius: px; | |
border-top-right-radius: px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment