If you want a gradient color for the widget, you can try this.
.mks_author_widget {
text-align: center;
background: #e4ecf3;
background: -moz-linear-gradient(top, #ffffff 0%, #e4ecf3 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e4ecf3));
background: -webkit-linear-gradient(top, #ffffff 0%,#e4ecf3 100%);
background: -o-linear-gradient(top, #ffffff 0%,#e4ecf3 100%);
background: -ms-linear-gradient(top, #ffffff 0%,#e4ecf3 100%);
background: linear-gradient(to bottom, #ffffff 0%,#e4ecf3 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=’#ffffff’, endColorstr=’#e4ecf3′,GradientType=0 );
}