Created
June 25, 2015 16:12
-
-
Save suisho/7e0fc2226cef6e1b13ba 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.3.14) | |
// Compass (v1.0.3) | |
// ---- | |
@mixin border-title($color: "black"){ | |
border: 1px dotted #{$color}; | |
color: #{$color} | |
} | |
.default-title{ | |
@include border-title(); | |
} | |
.super-title{ | |
@include border-title(red); | |
} |
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
.default-title { | |
border: 1px dotted black; | |
color: black; | |
} | |
.super-title { | |
border: 1px dotted red; | |
color: red; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment