/* // ===== _style_demo.scss // Woo, SASS! ===== // :mode=css: */ .section_image-250-right { @include section_image($side: right, $width: 250px, $caption: over, $border: false) } .section_image-250-right-border { @include section_image($side: right, $width: 250px, $caption: over, $border: true) } .section_image-250-right-bottom { @include section_image($side: right, $width: 250px, $caption: bottom, $border: false) } .section_image-250-right-bottom-border { @include section_image($side: right, $width: 250px, $caption: bottom, $border: true) } .section_image-250-left { @include section_image($side: left, $width: 250px, $caption: over, $border: false) } .section_image-250-left-border { @include section_image($side: left, $width: 250px, $caption: over, $border: true) } .section_image-250-left-bottom { @include section_image($side: left, $width: 250px, $caption: bottom, $border: false) } .section_image-250-left-bottom-border { @include section_image($side: left, $width: 250px, $caption: bottom, $border: true) } code { border: 1px dashed #A4A4A4; background-color: #F1F1F1; display: block; margin: 10px 0; padding: 15px; }