Skip to content

Instantly share code, notes, and snippets.

View christianbyrd's full-sized avatar

cbyrd christianbyrd

View GitHub Profile
@laurendorman
laurendorman / _gradient-mixins.scss
Created December 28, 2015 16:15
Sass Mixins - Gradient Text, Borders and Backgrounds for Buttons
// $dir = Direction of gradient
// $from = Starting color
// $to = Ending color
// $width = Border width/thickness
@mixin border-gradient($dir, $from, $to, $width) {
border-left: $width solid $from;
border-right: $width solid $to;
background-image:
// Needed for both the top and bottom borders