Skip to content

Instantly share code, notes, and snippets.

@mucsher
Created April 17, 2013 09:06
Show Gist options
  • Save mucsher/5402887 to your computer and use it in GitHub Desktop.
Save mucsher/5402887 to your computer and use it in GitHub Desktop.
FLoat Liquid Layout
#floatLiquidLayout() {
.fixedFluid(@fixedWidth, @space, @fixedName: fixed-colum, @fluidName: fluid-colum){
.@{fixedName}{
float: left;
width: @fixedWidth;
}
.@{fluidName} {
margin-left: @fixedWidth + @space;
}
}
.fluidFixed(@fixedWidth, @space, @fixedName: fixed-colum, @fluidName: fluid-colum){
.@{fixedName}{
float: right;
width: @fixedWidth;
}
.@{fluidName} {
margin-right: @fixedWidth + @space;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment