Sha256: 0e1bb74387922d9f7e70ab67d812c1ff527fe00eddd77867b3f6b915b533d55b
Contents?: true
Size: 591 Bytes
Versions: 3
Compression:
Stored size: 591 Bytes
Contents
// Mixins // Media queries, based on: http://alwaystwisted.com/post.php?s=2013-04-01-my-media-query-mixin @mixin mq($point, $query1: min, $query2: width) { @media (#{$query1}-#{$query2}: $point) { @content; } } // Centered elements @mixin centered { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } // Drop Overlays @mixin drop-overlay { content: ""; position: absolute; z-index: $z2; top: 0; left: 0; bottom: 0; right: 0; background: rgba(#27353B, 0.6); } // Usefull Compass mixins // +font-face // +ellipsis // +clearfix
Version data entries
3 entries across 3 versions & 1 rubygems