Skip to content

Instantly share code, notes, and snippets.

@largonet
Created February 4, 2014 09:44
Show Gist options
  • Save largonet/8800747 to your computer and use it in GitHub Desktop.
Save largonet/8800747 to your computer and use it in GitHub Desktop.
css gradient divider
.level2 {
background-image: -webkit-radial-gradient(center top , ellipse farthest-side, rgba(235, 233, 233, 0.6), rgba(16, 83, 130, 0) 80%);
background-image: -moz-radial-gradient(center top , ellipse farthest-side, rgba(235, 233, 233, 0.6), rgba(16, 83, 130, 0) 80%);
background-image: -o-radial-gradient(center top , ellipse farthest-side, rgba(235, 233, 233, 0.6), rgba(16, 83, 130, 0) 80%);
background-image: -ms-radial-gradient(center top , ellipse farthest-side, rgba(235, 233, 233, 0.6), rgba(16, 83, 130, 0) 80%);
background-image: radial-gradient(center top , ellipse farthest-side, rgba(235, 233, 233, 0.6), rgba(16, 83, 130, 0) 80%);
background-position: 100% 0;
background-repeat: no-repeat;
background-size:100% 2px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment