css-litcss
Version:
A CSS utility library that is meant to cover classes the Bootstrap is missing
76 lines (48 loc) • 1.6 kB
Markdown
# LitCSS
A CSS utility library that is meant to cover classes that Bootstrap is missing
Home page: https://advaithmalka.github.io/litcss/
## Installation
### Using NPM
```npm
npm i css-litcss
```
Then add this link tag in the `<head>` tag of your HTML document
```html
<link
rel="stylesheet"
type="text/css"
href="path/to/css-litcss/main/css/litcss.css"
/>
```
Some components require litJS; to see if you need to use litJS see the [documentation](https://advaithmalka.github.io/litcss/docs/)
If you require litJS add this `<script>` tag at the bottom of your HTML document
```html
<script src="path/to/css-litcss/main/js/litjs.js"></script>
```
### Using a CDN
Place this `<link>` tag in your document's `<head>` tag
```html
<link
src="https://cdn.jsdelivr.net/npm/css-litcss/main/css/litcss.min.css"
crossorigin="anonymous"
/>
```
To use litJS place this at the bottom of your HTML document
```html
<script
src="https://cdn.jsdelivr.net/npm/css-litcss/main/js/litjs.js"
crossorigin="anonymous"
></script>
```
### Github Repository
The Git repo and download link can be found [here](https://github.com/advaithmalka/LitCSS)
## Documentation
The full documentation can be found here:
https://advaithmalka.github.io/litcss/docs/
## Contribute
If you have ideas for improvement feel free to clone the repository and add your changes.
Make sure to submit a pull request after making your changes.
## Licence
[MIT](https://choosealicense.com/licenses/mit/)
#
Code made and managed by Advaith Malka