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
/* | |
* BACKGROUND-IMAGE SPRITE FIT | |
* | |
* This mixin resize a background-image via the background-size property. | |
* Requirements: | |
* * icon ratio 1:1 (square shape), | |
* * the first & second var are strings, all the others are digits ONLY, | |
* * don't put the 'px', only value as digit! | |
* | |
* ----------------------------------------------------------------- |
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
// Simple sass maps | |
$alphaValues: 70 50 20; | |
$hexColors: ( | |
"primary": #67486b, | |
"secondary": #749ee8 | |
); | |
// Lists are complex multi-level sass maps | |
$mappedItems: (primary, #67486B, 70 50), | |
(secondary, #749EE8, 80 40 20); |