Created
March 5, 2015 20:35
-
-
Save JayWIlsonJr/4d0ce4f95a05c24b23c1 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
| <p>Text inside the P tag is Pink</p> |
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
| // ---- | |
| // Sass (v3.4.12) | |
| // Compass (v1.0.3) | |
| // ---- | |
| $primaryColor: #eeccff; | |
| body { | |
| // varaible scoped within this selector | |
| $primaryColor: #000; | |
| background: $primaryColor; | |
| } | |
| p { | |
| color: $primaryColor; | |
| } |
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
| body { | |
| background: #000; | |
| } | |
| p { | |
| color: #eeccff; | |
| } |
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
| <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