Added sass and changed basic structure
Many things to do.
This commit is contained in:
parent
ad4697dd9e
commit
f2dfe32ca2
22 changed files with 1827 additions and 4 deletions
45
_hippie.scss
Normal file
45
_hippie.scss
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
// Add Bourbon and Bitters
|
||||
// ------------------------------------------------------------------------------
|
||||
// @import "bourbon/bourbon";
|
||||
|
||||
|
||||
|
||||
// Reset
|
||||
// ------------------------------------------------------------------------------
|
||||
@import "other/normalize.min.css";
|
||||
|
||||
|
||||
|
||||
// Global configuration with default values
|
||||
// Adjustments can be made by copying values from default to config
|
||||
// ------------------------------------------------------------------------------
|
||||
@import "default"; // NOTE // do not edit
|
||||
@import "config"; // EDIT THIS // copy default values and adjust
|
||||
|
||||
|
||||
|
||||
// Modules and variables
|
||||
// Additional modules can be defined here
|
||||
// ------------------------------------------------------------------------------
|
||||
@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
|
||||
// ------------------------------------------------------------------------------
|
||||
@import "basic/typo";
|
||||
@import "basic/io";
|
||||
@import "basic/layout";
|
||||
// ADD HERE // @import "{name}/example";
|
||||
|
||||
// Individual Modules and variables
|
||||
// in dependency to other styles
|
||||
// ------------------------------------------------------------------------------
|
||||
@import "modules/card/card_module";
|
||||
@import "modules/editor/editor_module";
|
||||
@import "modules/explanation/explanation_module";
|
||||
|
||||
// NOTE // No css rules allowed in here
|
||||
Loading…
Add table
Add a link
Reference in a new issue