Sha256: 26fc4915d5b9cb534fdb77e9eb55daab3e41e57e037f27e11bd04f2e195c1af5

Contents?: true

Size: 669 Bytes

Versions: 5

Compression:

Stored size: 669 Bytes

Contents

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

@mixin ib($align : middle) {
  vertical-align: $align;
  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

5 entries across 5 versions & 1 rubygems

Version Path
futuro-0.7.4 _sass/helpers/mixins.scss
futuro-0.7.3 _sass/helpers/mixins.scss
futuro-0.7.2 _sass/helpers/mixins.scss
futuro-0.7.1 _sass/helpers/mixins.scss
futuro-0.7.0 _sass/helpers/mixins.scss