Skip to content

Instantly share code, notes, and snippets.

@suissa
Created February 17, 2013 15:26
Show Gist options
  • Save suissa/4971881 to your computer and use it in GitHub Desktop.
Save suissa/4971881 to your computer and use it in GitHub Desktop.
Single Responsibility with LESS
.setSize(@w, @h){
width: @w;
height: @h;
}
.iconSize(@size){
.setSize(@size);
}
.iconCreate(@background, @position: left, @size: 16px){
background-image: @background;
background-repeat: no-repeat;
background-position: top center;
display: inline-block;
float: @position;
.iconSize(@size);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment