- Add styles from module to tables file - Remove tables module - Assign styles as depended classes instead of repeating element names - Add draggable style for table
40 lines
1.5 KiB
SCSS
40 lines
1.5 KiB
SCSS
// Reset
|
|
// Use a file outside of hippie i.e. vendor/normalize.css
|
|
// -----------------------------------------------------------------------------
|
|
// @import "../../vendor/normalizecss/normalize.css";
|
|
// @import "../../node_modules/normalize.css/normalize.css";
|
|
|
|
// Fonts
|
|
// Use a central file outside of hippie for font definitions with @font-face
|
|
// -----------------------------------------------------------------------------
|
|
// @import "../../vendor/fonts.css";
|
|
|
|
// Functions and Mixins
|
|
// Important code constructions
|
|
// -----------------------------------------------------------------------------
|
|
@forward "functions/color";
|
|
@forward "mixins";
|
|
|
|
// Global configuration with default values
|
|
// -----------------------------------------------------------------------------
|
|
@forward "global/config";
|
|
@forward "global/common";
|
|
@forward "global/typography";
|
|
|
|
// Basic styles - this is the core of definitions
|
|
// Individual styles can be added her
|
|
// -----------------------------------------------------------------------------
|
|
// Following the w3c document element structure
|
|
// https://w3c.github.io/html/index.html#contents
|
|
@forward "elements/sections";
|
|
@forward "elements/grouping";
|
|
@forward "elements/textlevel";
|
|
@forward "elements/embedded";
|
|
@forward "elements/tables";
|
|
@forward "elements/interactive";
|
|
|
|
// Individual Modules and variables
|
|
// in dependency to other styles
|
|
// -----------------------------------------------------------------------------
|
|
@forward "modules/breakpoint/breakpoint_module";
|
|
@forward "modules/maintenance/maintenance_module";
|