Sha256: 96abc670f6a144b07890bcba3f53c0fd9f81a8a9efb772961b5ce62449f23669
Contents?: true
Size: 593 Bytes
Versions: 14
Compression:
Stored size: 593 Bytes
Contents
// cross browser border box @mixin border-box() { @include box-sizing(border-box); // MUST BE ABSOLUTE PATH @include ie7 { behavior: url(/elements/js/boxsizing.htc); } } // cross browser mixins @mixin ff { body:not(:-moz-handler-blocked) & { @content } } @mixin ie7 { .lt-ie8 & { @content } } @mixin ie8 { .lt-ie9 & { @content } } // clearfix mixin @mixin clearfix { *zoom: 1; &:before, &:after { display: table; content: ""; } &:after { clear: both; } } .clearfix { @include clearfix; } // converting px to em @function em($px, $base: $base-font-size) { @return ($px / $base) * 1em; }
Version data entries
14 entries across 14 versions & 1 rubygems