Skip to content

Instantly share code, notes, and snippets.

@kevinkace
Created June 10, 2014 17:56
Show Gist options
  • Save kevinkace/c3ac6589285dbd445fcd to your computer and use it in GitHub Desktop.
Save kevinkace/c3ac6589285dbd445fcd to your computer and use it in GitHub Desktop.
.border-x(@args) {
border-top: @args;
border-bottom: @args;
}
.border-y(@args) {
border-right: @args;
border-left: @args;
}
.margin-x(@args) {
margin-top: @args;
margin-bottom: @args;
}
.margin-y(@args) {
margin-right: @args;
margin-left: @args;
}
.padding-x(@args) {
padding-top: @args;
padding-bottom: @args;
}
.padding-y(@args) {
padding-right: @args;
padding-left: @args;
}
.x(@args) {
top: @args;
bottom: @args;
}
.y(@args) {
right: @args;
left: @args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment