Skip to content

Instantly share code, notes, and snippets.

@gavin-hall
Last active December 13, 2015 20:38
Show Gist options
  • Save gavin-hall/4971422 to your computer and use it in GitHub Desktop.
Save gavin-hall/4971422 to your computer and use it in GitHub Desktop.
CSS Visual Effects
/* 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