A very tiny CSS starter kit.
The purpose of this CSS starter kit, is to provide a decent out of the box experience, that does not get in the way of building your project.
Take your pick. You have options:
- Copy the
.css
file and drop it in to your site as-is. - Grab the
.scss
files and incorporate that in your build process.
Then simply amend :root
variables per your colors and specs. There isn't a wrong way to use it.
To build and run locally, you need to install sass
choco install sass
Once installed, you can run
sass tinycss.scss:demo/tinycss.css --watch --style expanded --embed-sources
to generate the files you see here, or use other cli options from sass to suit your specific needs. Use the --watch
parameter for ongoing development.
To generate minified output:
sass demo/tinycss.css:demo/tinycss.min.css --style compressed