Sha256: 335ac61be49c31abef44ab6c65da47329a26ac161f31f3a1a198f9894e4b7ab6

Contents?: true

Size: 650 Bytes

Versions: 7

Compression:

Stored size: 650 Bytes

Contents

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

@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

7 entries across 7 versions & 1 rubygems

Version Path
futuro-0.4.6 _sass/helpers/_mixins.scss
futuro-0.4.5 _sass/helpers/_mixins.scss
futuro-0.4.4 _sass/helpers/_mixins.scss
futuro-0.4.3 _sass/helpers/_mixins.scss
futuro-0.4.2 _sass/helpers/_mixins.scss
futuro-0.4.1 _sass/helpers/_mixins.scss
futuro-0.4.0 _sass/helpers/_mixins.scss