Sha256: 09682ffaee9cff4a9178df6d5e86a7554975f519e40ddf90d368b05d863e55c0

Contents?: true

Size: 494 Bytes

Versions: 5

Compression:

Stored size: 494 Bytes

Contents

//==================================================================
// BOX-SHADOW MIXIN
//==================================================================

@mixin box-shadow( $x: 0.25rem, $y: 0.25rem, $blur: 0.5rem, $spread: 0.5rem, $color: var(--dark), $opacity: 1, $inset: false ) {
    -webkit-box-shadow: $x $y $blur $spread rgba($color, $opacity);
       -moz-box-shadow: $x $y $blur $spread rgba($color, $opacity);
            box-shadow: $x $y $blur $spread rgba($color, $opacity);
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
redeyed-jekyll-theme-0.1.7 _sass/includes/components/mixins/_box-shadow.scss
redeyed-jekyll-theme-0.1.6 _sass/includes/components/mixins/_box-shadow.scss
redeyed-jekyll-theme-0.1.5 _sass/includes/components/mixins/_box-shadow.scss
redeyed-jekyll-theme-0.1.4 _sass/includes/components/mixins/_box-shadow.scss
redeyed-jekyll-theme-0.1.3 _sass/includes/components/mixins/_box-shadow.scss