@lumen-ui/static.css
v0.1.0
Published
A drop-in collection of CSS styles to establish common stylings.
Downloads
3
Readme
static.css
A drop-in collection of CSS styles to establish common stylings.
Development
Ensure your environment has Git, Node.js, and npm installed.
Clone repository, run
git clone [email protected]:lumen-ui/static.css.git.Install dependencies, run
yarn.Make changes to the styles in the src directory, and perform one of the options:
- Manually compile Sass to plain CSS, run
yarn sass. - Watch for Sass changes to automatically compile to plain CSS, run
yarn sass-watch.
- Manually compile Sass to plain CSS, run
To add vendor prefixes to the compiled
dist/static.css file, runyarn build.
Usage
We are currently in the process of publishing the static.css file for easy integration (e.g. <link rel="stylesheet" href="https://unpkg.com/@lumen-ui/static.css" />), until that is setup, you can do the following:
- Download/clone the repository.
- Copy/paste the
dist/static.css filefile into your project (e.g. inside yourstyles/vendorfolder). - Link the stylesheet inside the head section of your HTML page,
<link rel="stylesheet" href="styles/vendor/static.css">.
