85 lines
2.3 KiB
SCSS
85 lines
2.3 KiB
SCSS
/*
|
|
* # TABLE OF CONTENTS
|
|
*
|
|
* - Reset
|
|
* - Configuration
|
|
* - Special modules
|
|
* - Basic styles
|
|
* - Common
|
|
* - Typography
|
|
*
|
|
* - Sections
|
|
* - Grouping
|
|
* - Textlevel
|
|
* - Embedded
|
|
* - Tables
|
|
* - Interactive
|
|
* - Modules
|
|
*
|
|
*/
|
|
|
|
|
|
// Reset
|
|
// Use a file outside of hippie i.e. other/normalize.css
|
|
// -----------------------------------------------------------------------------
|
|
@import "other/normalize.css";
|
|
// @import "other/YOUR-FILES.css";
|
|
|
|
|
|
|
|
// Fonts
|
|
// Use a central file outside of hippie for font definitions with @font-face
|
|
// -----------------------------------------------------------------------------
|
|
// @import "other/fonts.css";
|
|
|
|
|
|
|
|
// Global configuration with default values
|
|
// Adjustments can be made by copying values from _config.scss to _override.scss
|
|
// Be careful though changes will get lost if hippie gets updated
|
|
// -----------------------------------------------------------------------------
|
|
@import "default"; // EDIT
|
|
@import "config"; // DO NOT EDIT
|
|
@import "override"; // EDIT
|
|
|
|
|
|
|
|
// Modules and variables
|
|
// Additional modules can be defined here
|
|
// -----------------------------------------------------------------------------
|
|
@import "modules/vendor";
|
|
//@import modules/all deprecated because of the new vendor mixin
|
|
// @import "modules/YOUR-MODULE/YOUR-FILES";
|
|
|
|
// Basic styles - this is the core of definitions
|
|
// Individual styles can be added her
|
|
// -----------------------------------------------------------------------------
|
|
@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";
|
|
// @import "YOU-NAME-IT";
|
|
|
|
// Individual Modules and variables
|
|
// in dependency to other styles
|
|
// Additional modules can be defined here
|
|
// -----------------------------------------------------------------------------
|
|
@import "modules/tables/tables_module";
|
|
@import "modules/card/card_module";
|
|
@import "modules/editor/editor_module";
|
|
@import "modules/explanation/explanation_module";
|
|
@import "modules/print/print_module";
|
|
// @import "modules/YOUR-MODULE/YOUR-FILES";
|
|
|
|
|
|
|
|
// Not yet sorted
|
|
@import "basic/new";
|
|
|
|
// NOTE // No css rules allowed in here
|