Skip to content

Instantly share code, notes, and snippets.

@IrvBriscoe
Created January 7, 2012 00:28
Show Gist options
  • Save IrvBriscoe/1573233 to your computer and use it in GitHub Desktop.
Save IrvBriscoe/1573233 to your computer and use it in GitHub Desktop.
Green css3 Button
/* CSS */
body{ background-color: #fefce1; }
button{
background: #B3D72D;
background: -moz-linear-gradient(top, #B3D72D 0%, #93C623 5%, #7CBA1D 51%, #6AB119 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#B3D72D), color-stop(5%,#93C623), color-stop(51%,#7CBA1D), color-stop(100%,#6AB119));
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#B3D72D', endColorstr='#6AB119',GradientType=0 ); /* ie */
border: 1px solid #467700;
color: #fff;
cursor: pointer;
font-size: 13px;
font-weight: bold;
height: 40px;
text-shadow: 0px -1px 0px #55980d;
min-width: 200px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
button:hover{
background: #B8E02F;
background: -moz-linear-gradient(top, #B8E02F 0%, #9BD325 5%, #85C920 51%, #76C21C 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#B8E02F), color-stop(5%,#9BD325), color-stop(51%,#85C920), color-stop(100%,#76C21C));
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#B8E02F', endColorstr='#76C21C',GradientType=0 ); /* ie */
}
<!-- HTML -->
<button>Luke, I am your father.</button>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment