<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ----------------------------------
 * Buttons
 * ---------------------------------- */

[data-role="button"]{
    max-width: 200px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    background: #cccccc;
    border: 0;
    border-radius: 6px;
    color: #333;
    font-family: Ubuntu;
    font-size: 0.9rem;
    padding: 6px 25px;
    text-align: center;
    text-decoration: none;
    position: relative;
}

[data-role="button"]:after {
    background: url(../img/ubuntushape_small_radius_idle@18.png) no-repeat;
    background-size: 100% 100%;
    content: ' ';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

[data-role="button"]:active:after {
    background: url(../img/ubuntushape_small_radius_pressed@18.png) no-repeat;
    background-size: 100% 100%;
    content: ' ';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

[data-role="button"].danger {
    background: red;
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

[data-role="button"].warning {
    background: #faa732;
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

[data-role="button"].success {
    background: #5da357;
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}</pre></body></html>