https://github.com/kaplanz/recess
My minimal CSS classless reset
https://github.com/kaplanz/recess
classless css framework minimal
Last synced: 11 months ago
JSON representation
My minimal CSS classless reset
- Host: GitHub
- URL: https://github.com/kaplanz/recess
- Owner: kaplanz
- License: mit
- Created: 2025-04-07T04:00:01.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-04-07T15:05:09.000Z (11 months ago)
- Last Synced: 2025-04-07T15:24:10.587Z (11 months ago)
- Topics: classless, css, framework, minimal
- Language: CSS
- Homepage: https://cdn.zakhary.dev/recess/latest/main.css
- Size: 1.13 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# recess
## Usage
The easiest way to get started with Recess is to simply link the style in HTML
using a hosted version of the stylesheet, like such:
```html
```
I host a complementary version on my personal content delivery network,
available [here][cdndev].
## Development
It is pretty straightforward to develop for Recess yourself, as the included CSS
is already production ready. However, it is generally recommended to bundle and
minify CSS before hosting. One way to do this is using a CSS bundler such as
[Parcel], which could be installed using `npm`:
```bash
npm install parcel
```
Next, to bundle Recess, run Parcel using the following command:
```bash
parcel build src/main.css
```
On success, the resulting bundled CSS will be available under the `dist/`
directory.
## License
This project is licensed under the [MIT License](./LICENSE). You have
permission to use this code under the conditions of this license pursuant to the
rights it grants.
[cdndev]: https://cdn.zakhary.dev/recess
[parcel]: https://parceljs.org