Skip to content

Instantly share code, notes, and snippets.

View kturney's full-sized avatar

Kyle Turney kturney

  • Toyota Connected
  • Dallas, TX
View GitHub Profile
@mixin gradient($from, $to) {
/* fallback/image non-cover color */
background-color: $from;
/* Firefox 3.6+ */
background-image: -moz-linear-gradient($from, $to);
/* Safari 4+, Chrome 1+ */
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from($from), to($to));