Skip to content
Snippets Groups Projects
lbd_button_shortcode.scss 1.08 KiB
Newer Older
/* DEFAULT button shortcode styles */
a.button {
    background: #ccc;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 20px 25px;
    display: inline-block;
    text-transform: uppercase;
    }

    /* SIZE button styles */
    &.small {
        padding: 10px 15px;
        font-size: 0.9em;
    }
    &.large {
        padding: 30px 35px;
        font-size: 1.2em;
    }

            background: darken(#226CFF, 10%);
            background: darken(#FF2247, 10%);
    &.info {
        background: #FFDA22;
        &:hover,
        &:focus {
            background: darken(#FFDA22, 10%);
        }
    }
    &.action {
        background: #4FBE00;
        &:hover,
        &:focus {
            background: darken(#4FBE00, 10%);
        }
    }