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
| { | |
| // Default options | |
| 'functions': true | |
| } | |
| /* | |
| SCSS variables are information about icon's compiled state, stored under its original file name | |
| .icon-home { | |
| width: map-get($icon-home, 'width'); |
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.12) | |
| // Compass (v1.0.3) | |
| // ---- | |
| $camp-prog-co1-snapshot: ( | |
| name: 'camp-prog-co1-snapshot', | |
| x: 0px, | |
| y: 40px, |
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.12) | |
| // Compass (v1.0.3) | |
| // ---- | |
| $camp-prog-co1-snapshot: ( | |
| name: 'camp-prog-co1-snapshot', | |
| x: 0px, | |
| y: 40px, | |
| offset_x: 0px, |
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: { | |
| dev: { | |
| files: [{ | |
| expand: true, | |
| cwd: 'css/lib', | |
| src: ['**/*.scss'], | |
| dest: 'css/stage', | |
| ext: '.css' | |
| }] | |
| } |
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
| <div class="js-tabs"> | |
| <ul role="tablist" class="u-list-inline"> | |
| <li role="presentation"><a role="tab" href="#pane-curl" aria-controls="pane-curl" class="pill">cURL</a></li> | |
| <li role="presentation"><a role="tab" href="#pane-ruby" aria-controls="pane-ruby">Ruby</a></li> | |
| <li role="presentation"><a role="tab" href="#pane-python" aria-controls="pane-python">Python</a></li> | |
| <li role="presentation"><a role="tab" href="#pane-php" aria-controls="pane-php">PHP</a></li> | |
| <li role="presentation"><a role="tab" href="#pane-java" aria-controls="pane-java">Java</a></li> | |
| <li role="presentation"><a role="tab" href="#pane-dotnet" aria-controls="pane-dotnet">.NET</a></li> | |
| </ul> | |
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.12) | |
| // Compass (v1.0.3) | |
| // ---- | |
| @mixin to-em-or-rem($unit, $properties, $sizes, $context, $sledgehammer) { | |
| $values: (); | |
| $sublists: false; | |
| $unit: if($unit == "em", unquote("em"), unquote("rem")); |
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.12) | |
| // Compass (v1.0.3) | |
| // ---- | |
| @mixin to-em($properties, $sizes, $context: $font-size, $sledgehammer: false) { | |
| $values: (); | |
| $sublists: false; | |
| $important: if($sledgehammer, "!important", ""); |
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.12) | |
| // Compass (v1.0.3) | |
| // ---- | |
| //// | |
| // I have written a lot of different `str-replace` Sass functions over | |
| // the months yet none of my tries were succeeding in making the new substring | |
| // able to contain the one to replace (e.g. `str-replace($str, "a", "ab")`). | |
| // Thanks to Valérian Galliat (@valeriangalliat), I finally managed to build |
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.1.0) | |
| // ---- | |
| $explicit-percentage-widths: ( | |
| 9, | |
| 10, | |
| 12, | |
| 18, | |
| 20, |
