Sha256: 137905f5faef8c90266b7a56380dc0a159d2ed74db554755ebc200bfd0646356
Contents?: true
Size: 384 Bytes
Versions: 56
Compression:
Stored size: 384 Bytes
Contents
// Custom mixins and functions /// Slightly lighten a color @function tint($color, $percentage) { @return mix(white, $color, $percentage); } /// Slightly darken a color @function shade($color, $percentage) { @return mix(black, $color, $percentage); } //Small caps @mixin smallcaps{ text-transform: uppercase; font-weight: 600; letter-spacing: .1em; font-size: .9em; }
Version data entries
56 entries across 56 versions & 2 rubygems