Skip to content

Instantly share code, notes, and snippets.

@mistergraphx
Last active August 29, 2015 14:20
Show Gist options
  • Save mistergraphx/3135ea79c8443c6f6042 to your computer and use it in GitHub Desktop.
Save mistergraphx/3135ea79c8443c6f6042 to your computer and use it in GitHub Desktop.
Sass test & usage
// ----
// 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;
}
}
/*! 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