Skip to content

Instantly share code, notes, and snippets.

@fernandofuly
Last active July 15, 2016 13:47
Show Gist options
  • Save fernandofuly/242d51764351f582481c62ec47022563 to your computer and use it in GitHub Desktop.
Save fernandofuly/242d51764351f582481c62ec47022563 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.21)
// Compass (v1.0.3)
// ----
/* Nested properties */
body {
margin: 0;
padding: 0;
line-height: 1.5;
font: {
family: Helvetica, Arial, sans-serif;
size: 1.125em;
weight: 400;
// Careful!!
blah: this is also be compiled;
// Careful!!
}
-webkit-font-smoothing: antialiased;
color: #333;
&.boxed-layout {
background-color: #F9F9F9;
}
}
p {
// Shortcut
font: 400 1.125em/1.5 Helvetica, Arial, sans-serif;
padding: {
top: 3em;
right: 0;
bottom: 3em;
left: 0;
}
}
/* Nested properties */
body {
margin: 0;
padding: 0;
line-height: 1.5;
font-family: Helvetica, Arial, sans-serif;
font-size: 1.125em;
font-weight: 400;
font-blah: this is also be compiled;
-webkit-font-smoothing: antialiased;
color: #333;
}
body.boxed-layout {
background-color: #F9F9F9;
}
p {
font: 400 1.125em/1.5 Helvetica, Arial, sans-serif;
padding-top: 3em;
padding-right: 0;
padding-bottom: 3em;
padding-left: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment