Skip to content

Instantly share code, notes, and snippets.

@joetemp
Last active August 29, 2015 14:01
Show Gist options
  • Select an option

  • Save joetemp/82239d2df382cf829ba1 to your computer and use it in GitHub Desktop.

Select an option

Save joetemp/82239d2df382cf829ba1 to your computer and use it in GitHub Desktop.
A mixin that maintains aspect ratio and always stays centered. You simply feed it a width and an aspect ratio.
@mixin center_aspect($width, $aspect) {
width: $width;
$height: $width * $aspect;
height: $height;
max-height: 90%;
left: 50%;
top: 50%;
margin-left: - ($width / 2);
margin-top: - ($height / 2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment