Skip to content

Instantly share code, notes, and snippets.

@wingsline
Last active August 29, 2015 14:15
Show Gist options
  • Save wingsline/5da75901ad8a1add9177 to your computer and use it in GitHub Desktop.
Save wingsline/5da75901ad8a1add9177 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.11)
// Compass (v1.0.3)
// ----
$positive: red;
$width: 100px;
@mixin lighterTextColor($color) {
color: lighten($color, 10);
}
body {
@include lighterTextColor($positive);
}
// Extend
p {
@extend body;
}
// Operators
div {
padding: $width/2 $width;
}
body, p {
color: #ff3333;
}
div {
padding: 50px 100px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment