.gradient {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.gradient.gradient-danger {
    background: -moz-linear-gradient(top, #f26d6d 50%, #f25454 50%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #f26d6d), color-stop(50%, #f25454));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f26d6d 50%, #f25454 50%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f26d6d 50%, #f25454 50%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f26d6d 50%, #f25454 50%);
    /* IE10+ */
    background: linear-gradient(to bottom, #f26d6d 50%, #f25454 50%);
    /* W3C */
    color: white;
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#f26d6d', endColorstr='#f25454', GradientType=0);
    /* IE6-9 */
}