Sha256: 289e6c929c7b80e7206d850b6fcea039fc04e6fe4eaa190de9d3c21af7adf283

Contents?: true

Size: 1 KB

Versions: 1

Compression:

Stored size: 1 KB

Contents

// Foundation for Sites
// https://get.foundation
// Licensed under MIT Open Source

////
/// @group functions
////

$-zf-font-stack: (
  'georgia': (Georgia, "URW Bookman L", serif),
  'helvetica': (Helvetica, Arial, "Nimbus Sans L", sans-serif),
  'lucida-grande': ("Lucida Grande", "Lucida Sans Unicode", "Bitstream Vera Sans", sans-serif),
  'monospace': ("Courier New", Courier, "Nimbus Sans L", monospace),
  'system': (-apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif),
  'verdana': (Verdana, Geneva, "DejaVu Sans", sans-serif),
);

/// Return a font stack list from a map. Equivalent to `map-safe-get($name, $-zf-font-stack)`.
///
/// @param {String} $stack - Name of the font stack.
/// @param {Map} $map [$-zf-font-stack] - Map of font stacks to retrieve a list from.
///
/// @returns {List} Found font stack.
@function font-stack($stack, $map: $-zf-font-stack) {
  @return map-safe-get($map, $stack);
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
foundation-rails-6.6.2.0 vendor/assets/scss/util/_typography.scss