Sha256: 9f0de24de5ac275f357c0f859bc64d0cb2a677b9373853cdc29bc90752a26c43

Contents?: true

Size: 633 Bytes

Versions: 4

Compression:

Stored size: 633 Bytes

Contents

@mixin zeros($pos:fixed) {
  position: $pos;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}

@mixin ib {
  vertical-align: middle;
  display: inline-block;
}

@mixin center {
  &:before {
    @include ib;
    margin-right: -0.25em;
    height: 100%;
    content: '';
  }
}

@mixin cf {
  &:before {
    content: " ";
    display: table;
  }
  &:after {
    content: " ";
    display: table;
    clear: both;
  }
}

@mixin grid($rep) {
  grid-template-columns: repeat($rep,1fr);
  display: grid;
}

@mixin rotatetitle($origin:bottom left,$deg:-90deg){
  transform-origin: $origin;
  transform: rotate($deg);
  position: absolute;
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
futuro-0.3.9 _sass/helpers/_mixins.scss
futuro-0.3.8 _sass/helpers/_mixins.scss
futuro-0.3.7 _sass/helpers/_mixins.scss
futuro-0.3.6 _sass/helpers/_mixins.scss