Skip to content

Instantly share code, notes, and snippets.

@voodoocode
Forked from mikefowler/_base.scss
Last active August 29, 2015 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save voodoocode/964b1c154f08c6f8e541 to your computer and use it in GitHub Desktop.
Save voodoocode/964b1c154f08c6f8e541 to your computer and use it in GitHub Desktop.
/**
* The result of this file structure is ONE *.css file per theme. Making a global change
* to _base or _config partial will update all themes that inherit from them. #win
*/
@import 'config';
/**
* Global
*/
body {
background-color: $background-color;
color: $body-copy-color;
}
// Colors
$background-color: #eee !default;
$body-copy-color: #222 !default;
// Base overrides
$background-color: #ccc;
$body-copy-color: #111;
// Inherit from base...
@import 'base';
/**
Theme-specific CSS goes here: modules, widgets, plugins, whatever...
**/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment