Sha256: 41687b22ea8b3bff058017e58ea8bcd7867ea16ca2868fc308c5886455c57767

Contents?: true

Size: 1.15 KB

Versions: 16

Compression:

Stored size: 1.15 KB

Contents

/* Button */

input[type="button"],
input[type="submit"],
input[type="reset"],
button,
.button {
    @include vendor('appearance', 'none');
    @include vendor('transition', ('color 0.2s ease-in-out', 'border-color 0.2s ease-in-out', 'background-color 0.2s ease-in-out'));
    background: none;
    border: solid 1px;
    border-radius: 0;
    color: inherit;
    cursor: pointer;
    display: inline-block;
    font-size: 0.8em;
    font-weight: 900;
    letter-spacing: 2px;
    min-width: 18em;
    padding: 0 0.75em;
    line-height: 3.75em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

    &:hover {
        background: rgba(188,202,206,0.15);
        border-color: inherit;
    }

    &.primary {
        background: _palette(one, bg);
        border-color: _palette(one, bg);
        color: _palette(one, fg) !important;

        &:hover {
            background: lighten(_palette(one, bg), 5) !important;
            border-color: lighten(_palette(one, bg), 5) !important;
        }
    }

    &.fit {
        width: 100%;
    }

    &.small {
        font-size: 0.7em;
        min-width: 14em;
        padding: 0.5em 0;
    }
}

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
jekyll-theme-twenty-0.1.16 _sass/components/_button.scss
jekyll-theme-twenty-0.1.15 _sass/components/_button.scss
jekyll-theme-twenty-0.1.14 _sass/components/_button.scss
jekyll-theme-twenty-0.1.12 _sass/components/_button.scss
jekyll-theme-twenty-0.1.11 _sass/components/_button.scss
jekyll-theme-twenty-0.1.10 _sass/components/_button.scss
jekyll-theme-twenty-0.1.9 _sass/components/_button.scss
jekyll-theme-twenty-0.1.8 _sass/components/_button.scss
jekyll-theme-twenty-0.1.7 _sass/components/_button.scss
jekyll-theme-twenty-0.1.6 _sass/components/_button.scss
jekyll-theme-twenty-0.1.5 _sass/components/_button.scss
jekyll-theme-twenty-0.1.4 _sass/components/_button.scss
jekyll-theme-twenty-0.1.3 _sass/components/_button.scss
jekyll-theme-twenty-0.1.2 _sass/components/_button.scss
jekyll-theme-twenty-0.1.1 _sass/components/_button.scss
jekyll-theme-twenty-0.1.0 _sass/components/_button.scss