This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // Sass (v3.4.13) | |
| // Compass (v1.0.3) | |
| // ---- | |
| // Global map hosting function aliases | |
| // @type Map | |
| // @prop {String} key - Alias name | |
| // @prop {String} value - Mapped function | |
| $function-aliases: () !global; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // Sass (v3.4.7) | |
| // Compass (v1.0.1) | |
| // ---- | |
| /// Convert angle | |
| /// @author Chris Eppstein | |
| /// @param {Number} $value - Value to convert | |
| /// @param {String} $unit - Unit to convert to | |
| /// @return {Number} Converted angle |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // Sass (v3.4.4) | |
| // Compass (v1.0.1) | |
| // ---- | |
| // Clamp | |
| // Old version | |
| // Works fine but is barely readable | |
| // And quite long | |
| @function old-clamp($value, $min, $max) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // Sass (v3.4.7) | |
| // Compass (v1.0.1) | |
| // ---- | |
| /// Bind all events, including self state if `$self` is true. | |
| /// @author Harry Roberts | |
| /// @link https://github.com/csswizardry/csswizardry.github.com/blob/master/css/_tools.mixins.scss#L13 CSSWizardry | |
| /// @param {Bool} $self - Include self state | |
| /// @output `:hover`, `:active` and `:focus` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // Sass (v3.4.5) | |
| // Compass (v1.0.1) | |
| // ---- | |
| /// Constants map | |
| /// @type Map | |
| /// @prop {Number} MAX_Z_INDEX - 2147483647 | |
| /// @prop {Number} PI - 3.1415926535897932384626433832795028841971693993751 | |
| /// @prop {Number} E - 2.71828182845904523536028747135266249775724709369995 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // Sass (v3.4.5) | |
| // Compass (v1.0.1) | |
| // ---- | |
| /// Constants map | |
| /// @type Map | |
| $CONSTANTS: (); | |
| /// Constant getter |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // Sass (v3.4.6) | |
| // Compass (v1.0.1) | |
| // ---- | |
| /// Apply `$function` with `$args` to each item from `$list`. | |
| /// @param {List} $list | |
| /// @param {String} $function | |
| /// @param {Arglist} $args | |
| /// @return {List} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // Sass (v3.4.13) | |
| // Compass (v1.0.3) | |
| // ---- | |
| // When using the Grid Layout module and Sass, | |
| // you might encounter a bug where Sass strips | |
| // parentheses around line identifiers. | |
| // This happens because parentheses are mostly | |
| // optional in Sass. However this makes your |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // libsass (v3.0) | |
| // ---- | |
| $base-path: '/assets/' !global; | |
| /// Mixin importing a `$font-name` font from `$file-name` file. | |
| /// @param {String} $font-name - Font name, meant to be used in `font-family` declarations | |
| /// @param {String} $file-name - File name without the extension | |
| /// @require {function} font |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // Sass (v3.4.7) | |
| // Compass (v1.0.1) | |
| // ---- | |
| /// Hacking specificity made easy | |
| /// If you have to use this, you are either using a shitty framework | |
| /// or doing something wrong. In any case, good luck. | |
| /// | |
| /// @param {String} $class - Class to multiply |