Created
February 4, 2014 09:44
-
-
Save largonet/8800747 to your computer and use it in GitHub Desktop.
css gradient divider
This file contains hidden or 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
.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