Last active
August 29, 2015 14:06
-
-
Save drogers98/b0e26647962cef43c9c5 to your computer and use it in GitHub Desktop.
SASS Background image and gradient mixin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="Discussions"></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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