Sha256: 98aab91b71205ec03725ed9d31b23a61a1fcd46ee43ec67b258efa490e418ae4

Contents?: true

Size: 988 Bytes

Versions: 2

Compression:

Stored size: 988 Bytes

Contents

absolute-full-size(spacement = 0){
  position: absolute;
  top: spacement;
  bottom: spacement;
  left: spacement;
  right: spacement;
}

only-icon-button{
  &:before{
    margin-right: 0 !important;
  }
}

icon-font-size(size){
  &:before{
    font-size: size;
  }
}

prefixify(property, value){
  -webkit-{property}: value;
  -moz-{property}: value;
  -o-{property}: value;
  {property}: value;
}

animation(name, duration, timing-function = linear, iteration-count = 1, fill-mode = none){
  prefixify(animation-name, name);
  prefixify(animation-duration, duration);
  prefixify(animation-timing-function, timing-function);
  prefixify(animation-iteration-count, iteration-count);
  prefixify(animation-fill-mode, fill-mode);
}

keyframes(name) {
  @-webkit-keyframes {name} {
    {block}; 
  }
  
  @-moz-keyframes {name} {
    {block};
  }
  
  @-ms-keyframes {name} {
    {block};
  }
  
  @keyframes {name} {
    {block};
  } 
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
sideshow-0.4.2 stylesheets/_mixins.styl
sideshow-0.4.1 stylesheets/_mixins.styl