Skip to content

Instantly share code, notes, and snippets.

View drewbolles's full-sized avatar

Drew Bolles drewbolles

View GitHub Profile
@drewbolles
drewbolles / _functions.scss
Created January 7, 2015 18:10
Sass functions
/**
* @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
*
@drewbolles
drewbolles / _reset.scss
Last active August 29, 2015 14:11
Mini Sass reset
/* mini reset */
h1,h2,h3,h4,h5,h6,ol,ul,p {
margin-top: 0;
margin-bottom: $spacing-unit-base;
}
@drewbolles
drewbolles / _mixins.scss
Last active August 29, 2015 14:10
Commonly used mixins
/**
* @file
* Custom theme mixins
*
* These mixins rely on these variables set these in your init or var file
*
* $breakpoints: (
* lap: 768px,
* desk: 1024px
* );
@drewbolles
drewbolles / index.php
Created June 25, 2014 15:29
WSOD (white screen of death) Drupal index.php error reporting
error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);