Created
April 17, 2013 09:06
-
-
Save mucsher/5402887 to your computer and use it in GitHub Desktop.
FLoat Liquid Layout
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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