Created
April 25, 2014 14:25
-
-
Save digiari/11291391 to your computer and use it in GitHub Desktop.
CSS3 Linear Gradient
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
| .content-block .small-btn { border:0; height:40px; width:121px; | |
| -ms-filter:'progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffffff", endColorstr="#ffe6e6e6")'; | |
| background: linear-gradient( | |
| to bottom, | |
| #fff, | |
| #e6e6e6); | |
| background: -moz-linear-gradient( | |
| top, | |
| #fff 0%, | |
| #e6e6e6); | |
| background: -webkit-gradient( | |
| linear, left top, left bottom, | |
| from(#fff), | |
| to(#e6e6e6)); | |
| border: 1px solid #c2c2c2; } | |
| .content-block .small-btn:hover { | |
| -ms-filter:'progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffe6e6e6", endColorstr="#ffffffff")'; | |
| background: linear-gradient( | |
| to bottom, | |
| #e6e6e6, | |
| #fff); | |
| background: -moz-linear-gradient( | |
| top, | |
| #e6e6e6 0%, | |
| #fff); | |
| background: -webkit-gradient( | |
| linear, left top, left bottom, | |
| from(#e6e6e6), | |
| to(#fff)); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment