An open API service indexing awesome lists of open source software.

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

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