Skip to content

Instantly share code, notes, and snippets.

@hiloki
Created February 15, 2014 08:20
Show Gist options
  • Save hiloki/9016086 to your computer and use it in GitHub Desktop.
Save hiloki/9016086 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.3)
// Compass (v1.0.0.alpha.18)
// ----
@mixin trbl($width: null, $height: null, $parent: null) {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: $width;
height: $height;
margin: auto;
@at-root #{$parent} {
position: relative;
}
}
.tbrl {
@include trbl(100px, 50px, ".tbrl-wrapper");
}
.tbrl {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100px;
height: 50px;
margin: auto;
}
.tbrl-wrapper {
position: relative;
}
<div class="tbrl-wrapper">
<div class="tbrl">\TBRL/</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment