Sha256: 72e1ec050d6921065abde7f5c9e0c422651020d9c22b343824c9b6956fc05ce8
Contents?: true
Size: 807 Bytes
Versions: 21
Compression:
Stored size: 807 Bytes
Contents
@mixin background-color($colors-list) { @each $name, $color in $colors-list { .#{$name} { background-color: $color !important; } } } @mixin text-color($colors-list) { @each $name, $color in $colors-list { .#{$name} { color: $color !important; } } } .bg_gradient { background: $gradient_start; background: -moz-linear-gradient(-45deg, $gradient_start 0%, $gradient_end 100%); background: -webkit-linear-gradient(-45deg, $gradient_start 0%, $gradient_end 100%); background: linear-gradient(135deg, $gradient_start 0%, $gradient_end 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#{$gradient_start}', endColorstr='#{$gradient_end}',GradientType=1 ); } @include text-color($text_colors); @include background-color($background_colors);
Version data entries
21 entries across 21 versions & 1 rubygems