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
/** | |
* @file | |
* A collection of sass functions. | |
*/ | |
/** | |
* spacing unit | |
* This function returns either the base spacing unit, or | |
* the modification passed through. Accepts fractions or decimals | |
* |
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
/* mini reset */ | |
h1,h2,h3,h4,h5,h6,ol,ul,p { | |
margin-top: 0; | |
margin-bottom: $spacing-unit-base; | |
} |
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
/** | |
* @file | |
* Custom theme mixins | |
* | |
* These mixins rely on these variables set these in your init or var file | |
* | |
* $breakpoints: ( | |
* lap: 768px, | |
* desk: 1024px | |
* ); |
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
error_reporting(E_ALL); | |
ini_set('display_errors', TRUE); | |
ini_set('display_startup_errors', TRUE); |
NewerOlder