Skip to content

Instantly share code, notes, and snippets.

@alfredbez
Created December 12, 2014 10:02
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save alfredbez/935bfb3d4821d8f0a574 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.7)
// Compass (v1.0.1)
// ----
$fullWidth: 1000px;
$leftColumn: 250px;
$rightColumn: $fullWidth - $leftColumn;
$fullWidthFluid: $fullWidth / $fullWidth * 100%;
$leftColumnFluid: $leftColumn / $fullWidth * 100%;
$rightColumnFluid: $rightColumn / $fullWidth * 100%;
body {
width: $fullWidthFluid;
}
#left {
width: $leftColumnFluid;
}
#right {
width: $rightColumnFluid;
}
body {
width: 100%;
}
#left {
width: 25%;
}
#right {
width: 75%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment