1
0
mirror of https://github.com/kognise/water.css.git synced 2025-08-13 08:34:45 +02:00

feat: add build files, add docs/ and .github/

This commit is contained in:
Jonas Kuske
2019-05-27 22:41:36 +02:00
parent 21869afbd7
commit 79ad695531
13 changed files with 80 additions and 47 deletions

View File

@@ -0,0 +1,8 @@
/**
* Standalone dark-themed version for legacy browsers.
* Includes dark variables and core, compiled at build time so the final output
* will only include regular CSS, no variables.
*/
@import '../variables-dark.css';
@import '../parts/_core.css';

View File

@@ -1,7 +1,7 @@
/**
* Standalone dark-themed version.
* Includes dark variables and core, compiled at build time so the final output
* will only include regular CSS, no variables.
* Includes dark variables and core, left as CSS variables
* so the theming can be adjusted at runtime.
*/
@import '../variables-dark.css';

View File

@@ -0,0 +1,8 @@
/**
* Standalone light-themed version for legacy browsers.
* Includes light variables and core, compiled at build time so the final output
* will only include regular CSS, no variables.
*/
@import '../variables-light.css';
@import '../parts/_core.css';

View File

@@ -1,7 +1,7 @@
/**
* Standalone light-themed version.
* Includes light variables and core, compiled at build time so the final output
* will only include regular CSS, no variables.
* Includes light variables and core, left as CSS variables
* so the theming can be adjusted at runtime.
*/
@import '../variables-light.css';