Skip to content

Instantly share code, notes, and snippets.

@JayWIlsonJr
Created March 5, 2015 20:35
Show Gist options
  • Select an option

  • Save JayWIlsonJr/4d0ce4f95a05c24b23c1 to your computer and use it in GitHub Desktop.

Select an option

Save JayWIlsonJr/4d0ce4f95a05c24b23c1 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<p>Text inside the P tag is Pink</p>
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
$primaryColor: #eeccff;
body {
// varaible scoped within this selector
$primaryColor: #000;
background: $primaryColor;
}
p {
color: $primaryColor;
}
body {
background: #000;
}
p {
color: #eeccff;
}
<p>Text inside the P tag is Pink</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment