Sha256: 6ff585fb37cf38b6c7cbfdcdda71fe7703f6bb8ca8b1810f1d418d24c643dbef

Contents?: true

Size: 457 Bytes

Versions: 16

Compression:

Stored size: 457 Bytes

Contents

$shadow_default_blur: 8px !default;
$shadow_default_x: 2px !default;
$shadow_default_y: 2px !default;
$shadow_default_color: #bbb !default;

@mixin box-shadow($x: $shadow_default_x, $y: $shadow_default_y, $blur: $shadow_default_blur, $color: $shadow_default_color) {
  box-shadow: $x $y $blur $color;
  -webkit-box-shadow: $x $y $blur $color;
}

@mixin no-box-shadow {
  box-shadow: 0px 0px 0px transparent;
  -webkit-box-shadow: 0px 0px 0px transparent;
}

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
olelo-0.9.15 static/themes/lib/shadow.scss
olelo-0.9.14 static/themes/lib/shadow.scss
olelo-0.9.13 static/themes/lib/shadow.scss
olelo-0.9.12 static/themes/lib/shadow.scss
olelo-0.9.11 static/themes/lib/shadow.scss
olelo-0.9.10 static/themes/lib/shadow.scss
olelo-0.9.9 static/themes/lib/shadow.scss
olelo-0.9.8 static/themes/lib/shadow.scss
olelo-0.9.7 static/themes/lib/shadow.scss
olelo-0.9.6 static/themes/lib/shadow.scss
olelo-0.9.5 static/themes/lib/shadow.scss
olelo-0.9.4 static/themes/lib/shadow.scss
olelo-0.9.3 static/themes/lib/shadow.scss
olelo-0.9.2 static/themes/lib/shadow.scss
olelo-0.9.1 static/themes/lib/shadow.scss
olelo-0.9.0 static/themes/lib/shadow.scss