Skip to content

Instantly share code, notes, and snippets.

@mucsher
Last active December 10, 2015 18:28
Show Gist options
  • Save mucsher/4474749 to your computer and use it in GitHub Desktop.
Save mucsher/4474749 to your computer and use it in GitHub Desktop.
Function Less: Convert Image Size
// Convert Image Size
#imgSize
{
.s3x4(@width) {
width: @width;
height: round((@width / 3) * 4);
}
.s4x3(@width) {
width: @width;
height: round((@width / 4) * 3);
}
.s4x4(@width) {
width: @width;
height: @width;
}
.s4x6(@width) {
width: @width;
height: round((@width / 4) * 6);
}
.s6x4(@width) {
width: @width;
height: round((@width / 6) * 4);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment