Sha256: 39e4d1cfe289f1309984759a690774dd60f3be89f806a34d89255f4a193fca13

Contents?: true

Size: 769 Bytes

Versions: 9

Compression:

Stored size: 769 Bytes

Contents

// Responsive blocks
@mixin on-mobile {
    @media only screen and (max-width: $mobile-width) {
        @content;
    }
}
@mixin on-tablet {
    @media only screen and (max-width: $tablet-width) {
        @content;
    }
}

// Back bois
@mixin cutout {
    background-color: $back-color;
    color: $white-color;
    box-shadow: inset 0px 0pt 8pt darken($back-color, 33%);
    padding: $spacing-unit;
}
@mixin block-cutout {
    @include cutout;
    display: block;
    margin: 0;
    margin-top: $spacing-unit;
    margin-bottom: $spacing-unit;
    padding: 2*$spacing-unit;
}
@mixin raised {
    background-color: $white-color;
    color: $back-color;
    box-shadow: 0px 0pt 8pt darken($back-color, 33%);
    padding: $spacing-unit;
}

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
jekyll-theme-backwhite-2.0.0 _sass/jekyll-theme-backwhite/_mixins.scss
jekyll-theme-backwhite-1.2.0 _sass/jekyll-theme-backwhite/_mixins.scss
jekyll-theme-backwhite-1.1.1 _sass/jekyll-theme-backwhite/_mixins.scss
jekyll-theme-backwhite-1.1.0 _sass/jekyll-theme-backwhite/_mixins.scss
jekyll-theme-backwhite-1.0.4 _sass/jekyll-theme-backwhite/_mixins.scss
jekyll-theme-backwhite-1.0.3 _sass/jekyll-theme-backwhite/_mixins.scss
jekyll-theme-backwhite-1.0.2 _sass/jekyll-theme-backwhite/_mixins.scss
jekyll-theme-backwhite-1.0.1 _sass/jekyll-theme-backwhite/_mixins.scss
jekyll-theme-backwhite-1.0.0 _sass/jekyll-theme-backwhite/_mixins.scss