Sha256: 94f279f89b514b914464f1e5d048679156b7c8c8435908fb9815a410bf8c71da

Contents?: true

Size: 1.35 KB

Versions: 5

Compression:

Stored size: 1.35 KB

Contents

@mixin link-color($color) {
  color: $color;

  &:hover {
    color: mix($color, #fff, 70);
  }
  &:active {
    color: mix($color, #000, 70);
  }
}

@mixin flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
}

@mixin flex-h {
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}

@mixin flex-v {
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@mixin flex-align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -moz-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@mixin flex-pack-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -moz-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@mixin flex-pack-justify {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -moz-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@mixin text-truncate {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
intro-0.4.1 app/javascript/stylesheets/intro/_mixins.scss
intro-0.4.0 app/javascript/stylesheets/intro/_mixins.scss
intro-0.3.0 app/assets/stylesheets/intro/_mixins.scss
intro-0.2.0 app/assets/stylesheets/intro/_mixins.scss
intro-0.1.0 app/assets/stylesheets/intro/_mixins.scss