2016-12-08 17:50:51 +01:00
|
|
|
/*
|
|
|
|
|
* # TABLE OF CONTENTS
|
|
|
|
|
*
|
|
|
|
|
* - Reset
|
|
|
|
|
* - Configuration
|
|
|
|
|
* - Special modules
|
|
|
|
|
* - Basic styles
|
|
|
|
|
* - Sections
|
|
|
|
|
* - Typography
|
|
|
|
|
* - I/O
|
|
|
|
|
* - Modules
|
|
|
|
|
*
|
|
|
|
|
* - Elements
|
|
|
|
|
* - Navigation
|
|
|
|
|
* - Links
|
|
|
|
|
* - Menus
|
|
|
|
|
* - Accessibility
|
|
|
|
|
* - Alignments
|
|
|
|
|
* - Clearings
|
|
|
|
|
* - Widgets
|
|
|
|
|
* - Content
|
|
|
|
|
* - Posts and pages
|
|
|
|
|
* - Comments
|
|
|
|
|
* - Infinite scroll
|
|
|
|
|
* - Media
|
|
|
|
|
* - Captions
|
|
|
|
|
* - Galleries
|
|
|
|
|
*
|
|
|
|
|
*/
|
2016-12-01 15:37:49 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// Reset
|
2016-12-07 19:06:52 +01:00
|
|
|
// Use a file outside of hippie i.e. other/normalize.css
|
2016-12-08 17:50:51 +01:00
|
|
|
// -----------------------------------------------------------------------------
|
2016-12-01 18:00:18 +01:00
|
|
|
@import "other/normalize.css";
|
2016-12-01 15:37:49 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Global configuration with default values
|
|
|
|
|
// Adjustments can be made by copying values from default to config
|
2016-12-08 17:50:51 +01:00
|
|
|
// -----------------------------------------------------------------------------
|
2016-12-01 15:37:49 +01:00
|
|
|
@import "default"; // NOTE // do not edit
|
|
|
|
|
@import "config"; // EDIT THIS // copy default values and adjust
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Modules and variables
|
|
|
|
|
// Additional modules can be defined here
|
2016-12-08 17:50:51 +01:00
|
|
|
// -----------------------------------------------------------------------------
|
2016-12-01 15:37:49 +01:00
|
|
|
@import "modules/flexbox";
|
|
|
|
|
@import "modules/vendor";
|
|
|
|
|
//@import modules/all deprecated because of the new vendor mixin
|
|
|
|
|
//@import modules/*/* needs sass-glob
|
|
|
|
|
// ADD HERE // @import "modules/example";
|
|
|
|
|
|
|
|
|
|
// Basic styles - this is the core of definitions
|
|
|
|
|
// Individual styles can be added her
|
2016-12-08 17:50:51 +01:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
@import "basic/common";
|
|
|
|
|
@import "basic/typography";
|
|
|
|
|
// Following the w3c document element structure
|
|
|
|
|
// https://w3c.github.io/html/index.html#contents
|
|
|
|
|
@import "basic/sections";
|
|
|
|
|
@import "basic/grouping";
|
|
|
|
|
@import "basic/textlevel";
|
|
|
|
|
@import "basic/embedded";
|
|
|
|
|
@import "basic/tables";
|
|
|
|
|
@import "basic/interactive";
|
2016-12-01 15:37:49 +01:00
|
|
|
// ADD HERE // @import "{name}/example";
|
|
|
|
|
|
2016-12-08 17:50:51 +01:00
|
|
|
// Individual Modules and variables
|
2016-12-01 15:37:49 +01:00
|
|
|
// in dependency to other styles
|
2016-12-08 17:50:51 +01:00
|
|
|
// -----------------------------------------------------------------------------
|
2016-12-01 15:37:49 +01:00
|
|
|
@import "modules/card/card_module";
|
|
|
|
|
@import "modules/editor/editor_module";
|
|
|
|
|
@import "modules/explanation/explanation_module";
|
|
|
|
|
|
|
|
|
|
// NOTE // No css rules allowed in here
|