PS Button - Smooth gradient

by db_dev

HTML

<button>Smooth Gradient</button>

CSS

button {
	font-size: 14px;
    min-width: 150px;
    padding: 12px 25px 11px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.1;
    white-space: normal;
    border-radius: 2px;
    color: #fff;
    position: relative;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background-color 300ms ease-out;
    margin: 0 0 20px;
	background: #009ab2;
    background: linear-gradient(to right,rgba(0,154,178,1) 0%,rgba(102,52,108,1) 100%);
    border: 0;
}