Sha256: c84043fa146566abf0db028b3aab30487ed365deacaa2de7f4f210e0ff562e28
Contents?: true
Size: 570 Bytes
Versions: 5
Compression:
Stored size: 570 Bytes
Contents
@global_color: #010101; @red_color: red; @green_color: green; .gradient (@local_color: #030303) { background-image: -moz-linear-gradient(top, bottom, from(@local_color), to(@global_color)); background-image: -webkit-gradient(linear, left top, left bottom, from(@local_color), to(@global_color)); } .test1 { .gradient; } .test2 { .gradient(#020202); } .test3 { background-image: -moz-linear-gradient(top, bottom, from(@red_color), to(@green_color)); background-image: -webkit-gradient(linear, left top, left bottom, from(@red_color), to(@green_color)); }
Version data entries
5 entries across 5 versions & 3 rubygems