Skip to content

Instantly share code, notes, and snippets.

@JohnAlbin
Created September 17, 2013 12:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JohnAlbin/6593562 to your computer and use it in GitHub Desktop.
Save JohnAlbin/6593562 to your computer and use it in GitHub Desktop.
Sass & Compass, Chapter 1: Variables
// Sass (v3.2.10)
// Compass (v0.13.alpha.4)
$color-highlight: #93008e;
$indent: 2.5em; // Use this any time we need indentation.
a:link {
color: $color-highlight;
}
.comment {
margin-left: $indent;
}
blockquote {
margin: 1.5em $indent;
}
a:link {
color: #93008e;
}
.comment {
margin-left: 2.5em;
}
blockquote {
margin: 1.5em 2.5em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment