Skip to content

Instantly share code, notes, and snippets.

@adamstac
Forked from anonymous/gist:1269189
Created October 7, 2011 01:38
Show Gist options
  • Save adamstac/1269231 to your computer and use it in GitHub Desktop.
Save adamstac/1269231 to your computer and use it in GitHub Desktop.
#main {
width: 100%;
}
aside {
width: 160px;
}
#sidebar {
width: 240px;
}
article {
width: 650px;
}
$aside-width: 160px;
$sidebar-width: 240px;
$article-width: 650px;
$main-width: 100%;
#main {
width: $main-width;
}
aside {
width: $aside-width;
}
#sidebar {
width: $sidebar-width;
}
article {
width: $article-width;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment