victorpavlov
6/12/2014 - 12:54 PM

SASS mixin for CSS triangels From https://github.com/mattbanks/Drupal-7-Starter-Theme/blob/master/assets/scss/partials/_mixins.scss

/*  * Mixin for basic CSS triangles  * @include triangle(up, #000, 50px) */
@mixin triangle($direction:up, $color:#000, $size:100px) {
  @if($direction == up) {
    border-color: transparent transparent $color;
    border-style: solid;
    border-width: 0 $size $size;
    height: 0;
    width: 0;
  }
  @if($direction == down) {
    border-color: $color transparent transparent transparent;
    border-style: solid;
    border-width: $size;
    height:0;
    width:0;
  }
  @if($direction == left) {
    border-color: transparent $color transparent transparent;
    border-style: solid;
    border-width: $size $size $size 0;
    height: 0;
    width: 0;
  }
  @if($direction == right) {
    border-color: transparent transparent transparent $color;
    border-style: solid;
    border-width: $size 0 $size $size;
    height:0;
    width:0;
  }
}