Sha256: 24a72e5c3f250029a2ed67e3d93c96e127925d7a1f8020e3e197d5c2073a47e0

Contents?: true

Size: 1.35 KB

Versions: 4

Compression:

Stored size: 1.35 KB

Contents

// CSS3 Flexible Box Model and property defaults

@mixin display-box {
  display: -webkit-box;
  display: -moz-box;
  display: box;
}

@mixin box-orient($orient: inline-axis) {
// horizontal|vertical|inline-axis|block-axis|inherit
  -webkit-box-orient: $orient;
     -moz-box-orient: $orient;
          box-orient: $orient;
}

@mixin box-pack($pack: start) {
// start|end|center|justify
  -webkit-box-pack: $pack;
     -moz-box-pack: $pack;
          box-pack: $pack;
}

@mixin box-align($align: stretch) {
// start|end|center|baseline|stretch
  -webkit-box-align: $align;
     -moz-box-align: $align;
          box-align: $align;
}

@mixin box-direction($direction: normal) {
// normal|reverse|inherit
  -webkit-box-direction: $direction;
     -moz-box-direction: $direction;
          box-direction: $direction;
}
@mixin box-lines($lines: single) {
// single|multiple
  -webkit-box-lines: $lines;
     -moz-box-lines: $lines;
          box-lines: $lines;
}

@mixin box-ordinal-group($integer: 1) {
  -webkit-box-ordinal-group: $integer;
     -moz-box-ordinal-group: $integer;
          box-ordinal-group: $integer;
}

@mixin box-flex($value: 0.0) {
  -webkit-box-flex: $value;
     -moz-box-flex: $value;
          box-flex: $value;
}

@mixin box-flex-group($integer: 1) {
  -webkit-box-flex-group: $integer;
     -moz-box-flex-group: $integer;
          box-flex-group: $integer;
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
bourbon-0.0.8 app/assets/stylesheets/css3/_flex-box.css.scss
bourbon-0.0.7 app/assets/stylesheets/css3/_flex-box.css.scss
bourbon-0.0.6 app/assets/stylesheets/css3/_flex-box.css.scss
bourbon-0.0.5 app/assets/stylesheets/css3/_flex-box.css.scss