Skip to content

Instantly share code, notes, and snippets.

View flauwekeul's full-sized avatar

Abbe Keultjes flauwekeul

View GitHub Profile
@flauwekeul
flauwekeul / SassMeister-input-HTML.html
Created November 4, 2015 14:02
Generated by SassMeister.com.
<div class="outer">
<div class="row">
<div class="col">
<div class="col-nested"></div>
<div class="col-nested"></div>
<div class="col-nested last"></div>
</div>
<div class="col"></div>
</div>
@flauwekeul
flauwekeul / vertical-center-child.scss
Created February 26, 2014 16:15
Sass mixin to vertically center the children of a container
// Inspired by http://css-tricks.com/vertically-center-multi-lined-text/
@mixin vertical-center-children($height: auto, $children: ':first-child') {
display: table;
height: $height;
#{$children} {
display: table-cell;
vertical-align: middle;
}
}