Skip to content

Instantly share code, notes, and snippets.

@drogers98
Last active August 29, 2015 14:06
Show Gist options
  • Save drogers98/b0e26647962cef43c9c5 to your computer and use it in GitHub Desktop.
Save drogers98/b0e26647962cef43c9c5 to your computer and use it in GitHub Desktop.
SASS Background image and gradient mixin
<div class="Discussions"></div>
$SIF_Red: #9e1d3a;
$SIF_LtRed: lighten($SIF_Red, 10%);
$SIF_DkRed: darken($SIF_Red, 20%);
@mixin icon($url){
@include background(url($url), linear-gradient($SIF_Red, $SIF_DkRed));
background-size: 50%, 100%;
background-repeat: no-repeat, repeat;
background-position: center, left;
}
.Discussions {
height:50px;
width:50px;
@include icon('YOUR_URL_HERE');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment