zuul-website/www/assets/sass/libs/_functions.scss
Jeremy Stanley 98ed431f6c Convert Arcana files from DOS to UNIX line endings
Switch all the Arcana text/HTML/CSS/JS files which used CR+LF line
endings to plain LF like other files in the repository, for
consistency and ease of maintenance. Some files had mixed line
endings, so fix them as well. Also clean up a handful of mixed
tab+space indents in www/index.html along with one line which had
only whitespace characters on it.

This change makes no edits to file content other than whitespace.

Change-Id: I5f1b9269112a7147bf682658f4884171bad13d72
2018-02-01 18:37:58 +00:00

34 lines
754 B
SCSS

/// Gets a duration value.
/// @param {string} $keys Key(s).
/// @return {string} Value.
@function _duration($keys...) {
@return val($duration, $keys...);
}
/// Gets a font value.
/// @param {string} $keys Key(s).
/// @return {string} Value.
@function _font($keys...) {
@return val($font, $keys...);
}
/// Gets a misc value.
/// @param {string} $keys Key(s).
/// @return {string} Value.
@function _misc($keys...) {
@return val($misc, $keys...);
}
/// Gets a palette value.
/// @param {string} $keys Key(s).
/// @return {string} Value.
@function _palette($keys...) {
@return val($palette, $keys...);
}
/// Gets a size value.
/// @param {string} $keys Key(s).
/// @return {string} Value.
@function _size($keys...) {
@return val($size, $keys...);
}