Sha256: 062abce71ab9a301fdd9537080442ea8b1bc980d96bf1f65e476bedd03aa21fd
Contents?: true
Size: 717 Bytes
Versions: 35
Compression:
Stored size: 717 Bytes
Contents
@mixin icon-before($icon) { content: $icon; font: normal 100 normal 12px/4 FontAwesome; position: absolute; color: $pageslide-icon-color; right: 10px; } @mixin respond-to($breakpoint) { @if map-has-key($breakpoints, $breakpoint) { @media #{map-get($breakpoints, $breakpoint)} { @content; } } @else { @warn 'Unfortunately, no value could be retrieved from `#{$breakpoint}`. ' + 'Please make sure it is defined in `$breakpoints` map.'; } } @mixin orientation($position) { @if $position == landscape { @media only screen and (orientation:landscape) { @content; } } @else if $position == portrait { @media only screen and (orientation : portrait) { @content; } } }
Version data entries
35 entries across 34 versions & 1 rubygems