css framework (à la tailwindcss) but without the bloated overload
- generate utility classes
- shake/purge
- autoprefix
- minify
- create documantion from file
- add preflight from tailwindcss
- _defaults.scss - config file for default variables (widths, colors, ...)used by appletini.scss
- _config.scss - config file for custom variables (widths, colors, ...) used by appletini. extend or override default values
- _appletini.scss - so to speak the frontend
- create _config.scss
and add:
@import "defaults";
$sizes: (
"large": 100px
);
- create style.scss
and add the following lines:
@import "appletini";
here you can also add your custom styles.
- _padding.scss - create paddings
preflight.css is copied from tailwindcss