https://github.com/aahvocado/aah-util-css
utility css classes by that can be compiled with sass & less
https://github.com/aahvocado/aah-util-css
utility-css
Last synced: 2 months ago
JSON representation
utility css classes by that can be compiled with sass & less
- Host: GitHub
- URL: https://github.com/aahvocado/aah-util-css
- Owner: aahvocado
- Created: 2018-12-23T23:22:58.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T08:47:25.000Z (over 3 years ago)
- Last Synced: 2026-02-19T21:40:42.972Z (4 months ago)
- Topics: utility-css
- Language: CSS
- Homepage:
- Size: 121 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# aah-util-css
This is a work in progress, and is still incomplete. This utility css uses [less](http://lesscss.org) for the framework.
This utility now supports `sass` and needs updated documentation.
## usage
`npm i aah-util-css`
## customizing
You can use it as is, or if you want to customize the colors you'll to have `less cli` installed.
Create a `definitions.less` file and customize the variables like here https://github.com/aahvocado/aah-util-css/blob/master/definitions.less
Then create an app level less file. Example `app.less`:
```
@import 'definitions.less'; // create this
@import 'aah-util-css/all-util-styles.less'; // from an imported package
```
Then you should be able to compile the styles like so
`lessc src/styles/app.less src/build/app.css`