Skip to content

Instantly share code, notes, and snippets.

@djGrill
Created March 16, 2013 07:25
Show Gist options
  • Save djGrill/5175387 to your computer and use it in GitHub Desktop.
Save djGrill/5175387 to your computer and use it in GitHub Desktop.
Example of using Sass Variables
$siteWidth: 1024px;
$gutterWidth: 20px;
$sidebarWidth: 300px;
body {
margin: 0 auto;
width: $siteWidth;
}
.content {
float: left;
width: $siteWidth - ($sidebarWidth+$gutterWidth);
}
.sidebar {
float: left;
margin-left: $gutterWidth;
width: $sidebarWidth;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment