98ed431f6c
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
34 lines
754 B
SCSS
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...);
|
|
} |