Skip to content

Instantly share code, notes, and snippets.

@zhoufenfens
Last active December 20, 2015 03:59
Show Gist options
  • Save zhoufenfens/6067671 to your computer and use it in GitHub Desktop.
Save zhoufenfens/6067671 to your computer and use it in GitHub Desktop.
gradient effect
ul#position li.on{
box-shadow: inset 0 1px 3px -1px #28b4ea,0 1px 2px rgba(0,0,0,.5);
background-color: #1293dc;
background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#1293dc),color-stop(100%,#0f6297));
background-image: -webkit-linear-gradient(top,#1293dc,#0f6297);
background-image: linear-gradient(top,#1293dc,#0f6297);
}
ul#position li.on{
box-shadow: inset 0 1px 3px -1px #28b4ea,0 1px 2px rgba(0,0,0,.5);
background-color: #1293dc;
background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#1293dc),color-stop(100%,#0f6297));
background-image: -webkit-linear-gradient(top,#1293dc,#0f6297);
background-image: linear-gradient(top,#1293dc,#0f6297);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment