Skip to content

Instantly share code, notes, and snippets.

@macx
Last active January 4, 2016 08:49
Show Gist options
  • Save macx/8597572 to your computer and use it in GitHub Desktop.
Save macx/8597572 to your computer and use it in GitHub Desktop.
<div class="box">
<div class="box__inner is-vertical-aligned">
VERTICAL ALIGNED
</div>
</div>
@import "compass";
@import "compass/css3";
// the magic
%is-vertical-aligned {
@include transform(translateY(-50%));
position: relative;
top: 50%;
}
body {
font-family: Helvetica, Arial;
background-color: #f5f5f5;
}
.box {
box-shadow: 0 1px 5px rgba(#000, 0.2);
margin: 30px auto;
width: 200px;
height: 200px;
padding: 10px;
background-color: #fff;
.box__inner {
@extend %is-vertical-aligned;
background-color: #d00;
color: #fff;
padding: 10px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment