LFLighting Fly

SCSS Mixins Library

Lighting Fly is simple and fast SCSS Mixins Library that contains mixins and functions for cross-browser use of modern CSS properties, and simply tricks to speed up your work.

SCSS
.fly {
  width: _get-rem(250px, 14px);
  @include transform(translateX(1984px));
  @include font-size(12px, 14px);
}
@include keyframes(fly) {
  from { top: 0; }
  to { top: -10px; }
}
Lighting Fly
LF
CSS
.fly {
  width: 17.85714rem;
  -webkit-transform: translateX(1984px);
  -ms-transform: translateX(1984px);
  transform: translateX(1984px);
  font-size: 12px;
  font-size: 0.85714rem;
}
@-webkit-keyframes fly {
  from { top: 0; }
  to { top: -10px; }
}
@keyframes fly {
  from { top: 0; }
  to { top: -10px; }
}

Modules

Changelog

Github: github.com/lightingbeetle/lightingfly

0.2.0 / 2015-02-06