tail.css/README.md

43 lines
1.3 KiB
Markdown
Raw Normal View History

2024-01-27 06:28:15 +01:00
## About
2024-01-29 01:26:51 +01:00
tail.css provides _a small subset_ of
2024-01-27 06:28:15 +01:00
[tailwind](https://tailwindcss.com/)
2024-08-03 05:52:26 +02:00
that was originally extracted from a hobby project.
2024-08-03 06:32:04 +02:00
The CSS files [dist/tail.css](dist/tail.css)
and [dist/tail.min.css](dist/tail.min.css) are provided
in case you don't have access to the nodejs sass compiler.
2024-01-27 06:28:15 +01:00
2024-03-14 00:41:58 +01:00
## Rationale
2024-01-27 07:25:27 +01:00
2024-03-14 00:41:58 +01:00
The motivation behind this project is to be able to use tailwind
2024-08-03 05:52:26 +02:00
without a nodejs environment. tail.css can be used within a vanilla
2024-03-14 00:41:58 +01:00
CSS environment, or within an environment that uses
[sass](https://sass-lang.com).
Most of the time I use tail.css within a sass environment, and
sprinkle small amounts of CSS on top.
2024-01-27 07:25:27 +01:00
2024-01-27 06:28:15 +01:00
## Build
2024-08-03 05:52:26 +02:00
Custom builds can customize what features are included in a build.
The `@import` directives in [src/](src/) decide what features to
include:
2024-01-28 07:39:56 +01:00
2024-02-01 13:31:46 +01:00
$ npm install -g sass
2024-01-27 06:28:15 +01:00
$ bin/build
## License
2024-02-01 13:31:46 +01:00
Copyright of src/tail/ belongs to the
2024-01-27 06:28:15 +01:00
[tailwind project](https://tailwindcss.com/).
2024-01-27 06:45:14 +01:00
<br>
2024-08-03 05:52:26 +02:00
See [tailwindcss/LICENSE](https://github.com/tailwindlabs/tailwindcss/blob/master/LICENSE)
2024-02-01 13:31:46 +01:00
Copyright of src/normalize/ belongs to the
[normalize.css project](https://raw.githubusercontent.com/necolas/normalize.css).
<br>
2024-08-03 05:52:26 +02:00
See [normalize/LICENSE.md](https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
2024-03-14 02:12:01 +01:00
The remaining copyright is covered by the [0BSD License](https://choosealicense.com/licenses/0bsd/).
<br>
2024-08-03 05:52:26 +02:00
See [./LICENSE](./LICENSE)