This file contains 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
/** | |
* Formulae and mixins to create any kind of evenly-spaced flexible grid | |
* you can possibly imagine. | |
*/ | |
/** | |
* Our grid settings. Change as desired for your project | |
*/ | |
$columns: 12; // Desired number of columns |
This file contains 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
<?php | |
function debug($var = false) { | |
echo "\n<pre style=\"background: #FFFF99; font-size: 10px;\">\n"; | |
$var = print_r($var, true); | |
echo $var . "\n</pre>\n"; | |
} | |
?> |