Last active
August 29, 2015 14:20
-
-
Save mistergraphx/3135ea79c8443c6f6042 to your computer and use it in GitHub Desktop.
Sass test & usage
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
// ---- | |
// libsass (v3.1.0) | |
// ---- | |
$version: '1.2.4'; | |
// This comment 'll exit in compressed mode | |
/*! Framework #{$version} */ | |
/* # Nested properties | |
*/ | |
.selector1 { | |
border: 0px solid black { | |
color:silver; | |
top:1px; | |
bottom:1px; | |
} | |
} | |
.funky { | |
font: { | |
family: fantasy; | |
size: 30em; | |
weight: bold; | |
} | |
} | |
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
/*! Framework 1.2.4 */ | |
/* # Nested properties | |
*/ | |
.selector1 { | |
border: 0px solid black; | |
border-color: silver; | |
border-top: 1px; | |
border-bottom: 1px; } | |
.funky { | |
font-family: fantasy; | |
font-size: 30em; | |
font-weight: bold; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment