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
| # EditorConfig is awesome: http://EditorConfig.org | |
| # This is the top-most EditorConfig file. | |
| root = true | |
| # All files. | |
| [*] | |
| charset = utf-8 | |
| end_of_line = lf | |
| indent_style = space |
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
| /* | |
| * _mixins.scss | |
| */ | |
| $font_dir: '../fonts/'; | |
| /* _simple-font-url('Chunkfive', 'eot'); */ | |
| @function _simple-font-url($name, $extension) | |
| { | |
| @return url($font_dir + $name + '-webfont.' + $extension); |