Skip to content

Instantly share code, notes, and snippets.

@secretfader
Created March 30, 2011 19:16
Show Gist options
  • Save secretfader/895087 to your computer and use it in GitHub Desktop.
Save secretfader/895087 to your computer and use it in GitHub Desktop.
.centerize(@width, @height) {
@backwards_width: (@width - @width * 2);
@backwards_height: (@height - @height * 2);
width: @width;
height: @height;
position: fixed;
top: 50%;
left: 50%;
margin-top: @backwards_height / 2px;
margin-left: @backwards_width / 2px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment