Skip to content

Instantly share code, notes, and snippets.

@iso100
iso100 / block-x-ray.scss
Created November 4, 2012 15:09 — forked from anonymous/block-x-ray.scss
Conditionally shades block level elements (Compass)
$show-blocks: true; // Show Block Shading
// Shades all block level elements if show-blocks is true
// Requires Compass
@if $show-blocks == true {
#{elements-of-type(block)}{
background: rgba(0,0,0,0.2);
}
}