Skip to content

Instantly share code, notes, and snippets.

View crypticsoft's full-sized avatar

Todd Wilson crypticsoft

View GitHub Profile
@thom4parisot
thom4parisot / _gradients.css.scss
Last active July 10, 2020 14:18 — forked from thbar/_gradients.css.scss
Horizontal Gradient Sass Mixin
@mixin horizontal-gradient($from, $to, $stop: 100%) {
/* fallback/image non-cover color */
background-color: $from;
/* Firefox 3.6+ */
background-image: -moz-linear-gradient(left, $from 0%, $to $stop);
/* Safari 4+, Chrome 1+ */
background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, $from), color-stop($stop, $to));