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
// Lato | |
$fonts-path: '../fonts/LatoLatin/fonts'; | |
// List of fonts used | |
// name_of_font: 'path_of_font' | |
// Please add only as many as you absolutely need | |
$font-list: ( | |
LatoLatin-Regular: 'LatoLatin-Regular', | |
LatoLatin-Bold: 'LatoLatin-Bold' | |
); |
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
// | |
// Font icons | |
// | |
// Demo page: [path to the demo page generated by Fontello] | |
// Font declaration and default styles copied from | |
// [path to CSS generated by Fontello] and turned into Sass. | |
// This path should be relative to the rendered CSS | |
$project-icons-path: '../fonts/project-icons/font/project-icons'; |
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.3.6) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
// Create a variable list for the icon names and content attribute | |
$project-icons-list: "search" "\e603", | |
"envelope" "\e604", | |
"star-empty" "\e606", | |
"ok" "\e605", |
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
// | |
// Variables assumed by the mixin | |
// | |
$print: "print"; | |
$ie10: ".ie10"; | |
$ie9: ".lt-ie10"; | |
$ie8: ".lt-ie9"; | |
$ie7: ".lt-ie8"; |
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
// Make elements align in a grid, regardless of height | |
// Apply to elements you want as grid items | |
// $cols = how many columns you want | |
// $margin-right = margin-right, should be in percent | |
// $ie8-height = an explicit height for all the elements, "off" by default, only applied to IE | |
@mixin gridify($cols, $margin-right: 5%, $ie8-height: auto) { | |
// Math for widths, margins, and clears | |
$width: (100% / $cols) - $margin-right + ($margin-right / $cols); | |
$ie-width: (100% / $cols) - $margin-right; | |
$clearnum: $cols + 1; |