diff --git a/src/stylesheets/config/functions/_deleteme.scss b/src/stylesheets/config/functions/_deleteme.scss deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/stylesheets/config/index.scss b/src/stylesheets/config/index.scss deleted file mode 100644 index 8aaeb0512..000000000 --- a/src/stylesheets/config/index.scss +++ /dev/null @@ -1,3 +0,0 @@ -@import "variables/*"; -@import "mixins/*"; -@import "functions/*"; diff --git a/src/stylesheets/config/mixins/_deleteme.scss b/src/stylesheets/config/mixins/_deleteme.scss deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/stylesheets/config/variables/_deleteme.scss b/src/stylesheets/config/variables/_deleteme.scss deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/stylesheets/global/_deleteme.scss b/src/stylesheets/global/_deleteme.scss deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/stylesheets/global/index.scss b/src/stylesheets/global/index.scss deleted file mode 100644 index 997d68cf4..000000000 --- a/src/stylesheets/global/index.scss +++ /dev/null @@ -1,6 +0,0 @@ -// Pull in all global variables, mixins and functions -// for use globally -@import "../config/index"; - -// Pull in all partials in the global directory -@import "_*.scss"; diff --git a/src/stylesheets/modules/README.md b/src/stylesheets/modules/README.md deleted file mode 100644 index b9eb81a27..000000000 --- a/src/stylesheets/modules/README.md +++ /dev/null @@ -1,23 +0,0 @@ -# HTTP2 modules styles - -Each HTML module you create should have a corresponding CSS directory within modules. - -Every module should import the config files (variables, mixins and functions) so that anything defined there can be used to calculate values within the module. - -Standard module directory structure should include an index file that imports the config files as well as any files in the directory, usually just one that is either named `_base.scss` or `_[module-name].scss` for easier fuzzy finder location. - -For example: - -``` -/modules - | - /example-module - | | - | index.scss // imports config and any underscored files in this directory - | _example-module.scss // has all the styles for this module - | - /another-module - | - index.scss - // etc -``` diff --git a/src/stylesheets/modules/example-module/_example-module.scss b/src/stylesheets/modules/example-module/_example-module.scss deleted file mode 100644 index ee0e7ff04..000000000 --- a/src/stylesheets/modules/example-module/_example-module.scss +++ /dev/null @@ -1,5 +0,0 @@ -// example base level component file - -.example-component { - font-size: 14px; -} diff --git a/src/stylesheets/modules/example-module/index.scss b/src/stylesheets/modules/example-module/index.scss deleted file mode 100644 index 9339935ea..000000000 --- a/src/stylesheets/modules/example-module/index.scss +++ /dev/null @@ -1,6 +0,0 @@ -// Pull in all global variables, mixins and functions -// for use in this component -@import "../../config/index"; - -// Pull in all partials in this module's folder -@import "_*.scss"