added current state from hippie main repo

commit state 175816
source/style/hippie
This commit is contained in:
Stephan 2019-11-12 20:18:02 +01:00
parent 58147a8e95
commit b60dd80cd5
36 changed files with 2990 additions and 0 deletions

53
_basic.scss Normal file
View file

@ -0,0 +1,53 @@
// Reset
// Use a file outside of hippie i.e. vendor/normalize.css
// -----------------------------------------------------------------------------
@import "../../vendor/normalizecss/normalize.css";
// Functions and Mixins
// Important code constructions
// -----------------------------------------------------------------------------
@import "functions/all";
@import "mixins/all";
// Fonts
// Use a central file outside of hippie for font definitions with @font-face
// -----------------------------------------------------------------------------
// @import "../../vendor/fonts.css";
// Global configuration with default values
// -----------------------------------------------------------------------------
@import "global/config";
// Modules and variables
// -----------------------------------------------------------------------------
@import "modules/vendor";
// @import modules/all deprecated because of the new vendor mixin
// Basic styles - this is the core of definitions
// Individual styles can be added her
// -----------------------------------------------------------------------------
@import "global/common";
@import "global/typography";
// Following the w3c document element structure
// https://w3c.github.io/html/index.html#contents
@import "elements/sections";
@import "elements/grouping";
@import "elements/textlevel";
@import "elements/embedded";
@import "elements/tables";
@import "elements/interactive";
// Individual Modules and variables
// in dependency to other styles
// -----------------------------------------------------------------------------
@import "modules/breakpoint/breakpoint_module";
@import "modules/tables/tables_module";
@import "modules/maintenance/maintenance_module";