Button Active Border Highlight Color #193

CSS Button active border highlight color

Adding these style CSS buttons to your website is easier than you think. Simply copy and paste the CSS code provided with each button design into your stylesheet

Preview Button Style

You can view the default style of buttons, the disabled state mode style of buttons, and the full-width block style of the button here. Some buttons style may not display in full width format

Button style

Disabled style

Full width block style

Button Source Code HTML and CSS

Click the button below to download the source code or edit it live.
To copy this click on the icon at the top right of the code box
Button HTML
<button class="btn-193"> Button 193</button>
Button CSS
.btn-193 {
    background-color: #fff;
    border-radius: 30px;
    border-style: none;
    box-shadow: rgba(0, 0, 0, .14) 0 6px 10px 0;
    color: #3c4043;
    font-weight: 500;
    letter-spacing: .25px;
    line-height: normal;
    padding: 11px 24px;
    transition: background box-shadow 280ms ease;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    border: 2px solid transparent;
    /*** full width block ***/
    /* width: 100%; */
}

.btn-193:hover {
    background: #d5e4ff;
    color: #174ea6;
}

.btn-193:active {
    border: 2px solid #0062ff;
}

/*** disabled style ***/
.btn-193:disabled {
    pointer-events: none;
    opacity: .65;
    color: #0f0f0f;
    box-shadow: none;
    text-shadow: none;
    background: #dcdcdc;
}