Sha256: 9519364fce95c36107c6f224899d181582b4927c7e48fa53fb80b473779162de

Contents?: true

Size: 473 Bytes

Versions: 7

Compression:

Stored size: 473 Bytes

Contents

@charset "UTF-8";

/// Hides the text in an element, commonly used to show an image instead. Some
/// elements will need block-level styles applied.
///
/// @link http://goo.gl/EvLRIu
///
/// @example scss
///   .element {
///     @include hide-text;
///   }
///
/// @example css
///   .element {
///     overflow: hidden;
///     text-indent: 101%;
///     white-space: nowrap;
///   }

@mixin hide-text {
  overflow: hidden;
  text-indent: 101%;
  white-space: nowrap;
}

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
garth-jekyll-theme-0.1.9 _sass/bourbon/bourbon/library/_hide-text.scss
bourbon-5.0.0.beta.6 core/bourbon/library/_hide-text.scss
bourbon-5.0.0.beta.5 core/bourbon/library/_hide-text.scss
bourbon-5.0.0.beta.4 core/bourbon/library/_hide-text.scss
bourbon-5.0.0.beta.3 core/bourbon/library/_hide-text.scss
bourbon-5.0.0.beta.2 core/bourbon/library/_hide-text.scss
bourbon-5.0.0.beta.1 core/bourbon/addons/_hide-text.scss