|
|
|
|
|
by jenius
5154 days ago
|
|
For those who enjoy sass: =triangle($direction: up, $size: 10px, $color: #000)
width: 0
height: 0
@if $direction == up
border-left: $size solid transparent
border-right: $size solid transparent
border-bottom: $size solid $color
@else if $direction == down
border-left: $size solid transparent
border-right: $size solid transparent
border-top: $size solid $color
@else if $direction == left
border-top: $size solid transparent
border-bottom: $size solid transparent
border-right: $size solid $color
@else if $direction == right
border-top: $size solid transparent
border-bottom: $size solid transparent
border-left: $size solid $color
|
|