Other mixins
There are other mixins that are good for our framework:
Gradients
Animation
Clearfix
Lets begin with gradient mixins:
=linearGradientFromTop($startColor, $endColor)
background: $startColor /* Old browsers */
background: -moz-linear-gradient(top, $startColor 0%, $endColor 100%)
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, $startColor), color-stop(100%, $endColor))
background: -webkit-linear-gradient(top, $startColor 0%, $endColor 100%)
background: -o-linear-gradient(top, $startColor 0%, $endColor 100%)
background: -ms-linear-gradient(top, $startColor 0%, $endColor 100%)
background: linear-gradient(to bottom, $startColor 0%, $endColor 100%)
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#{$startColor}', endColorstr='#{$endColor}',GradientType=0 )
=linearGradientFromLeft($startColor, $endColor)
background-color: $startColor
background: -webkit-gradient(linear, left top, right top, from($startColor), to($endColor...