Created
December 11, 2014 11:44
-
-
Save n3ssi3/55f3ca2424936df238ff to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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
// ---- | |
// Sass (v3.4.7) | |
// Compass (v1.0.1) | |
// ---- | |
$brand-list: | |
(primary, secondary, sucess, info, warning, danger, muted, | |
gray-darker, gray-dark, gray, gray-light, gray-lighter); | |
@each $brand-name in $brand-list { | |
.brand-#{$brand-name} { | |
// background: $brand-#{$brand-name}; | |
color: blue; | |
} | |
} |
This file contains 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
.brand-primary { | |
color: blue; | |
} | |
.brand-secondary { | |
color: blue; | |
} | |
.brand-sucess { | |
color: blue; | |
} | |
.brand-info { | |
color: blue; | |
} | |
.brand-warning { | |
color: blue; | |
} | |
.brand-danger { | |
color: blue; | |
} | |
.brand-muted { | |
color: blue; | |
} | |
.brand-gray-darker { | |
color: blue; | |
} | |
.brand-gray-dark { | |
color: blue; | |
} | |
.brand-gray { | |
color: blue; | |
} | |
.brand-gray-light { | |
color: blue; | |
} | |
.brand-gray-lighter { | |
color: blue; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment