Button set 1
by gk
HTML
<button class="primary" data-disable-invalid="" data-disable-with="" tabindex="2" type="submit">Submit</button>
CSS
.primary {
color: rgb(255, 255, 255);
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.15);
background-color: rgb(96, 176, 68);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgb(138, 221, 109)), to(rgb(96, 176, 68)));
background-image: -webkit-linear-gradient(rgb(138, 221, 109), rgb(96, 176, 68));
background-image: -moz-linear-gradient(rgb(138, 221, 109), rgb(96, 176, 68));
background-image: -o-linear-gradient(rgb(138, 221, 109), rgb(96, 176, 68));
background-image: linear-gradient(rgb(138, 221, 109), rgb(96, 176, 68));
border: 1px solid rgb(213, 213, 213);
border-radius: 3px 3px 3px 3px;
position: relative;
display: inline-block;
padding: 6px 12px;
font-size: 13px;
font-weight: bold;
line-height: 20px;
white-space: nowrap;
vertical-align: middle;
cursor: pointer
float: right;
}
.primary:hover {color:#fff;background-color:#569e3d;background-image:-webkit-linear-gradient(#79d858, #569e3d);background-image:linear-gradient(#79d858, #569e3d);border-color:#4a993e}