Tacit is a primitive CSS framework for dummies, like myself, who don't know anything about graphic design but want their web services to look eatable. No classes, no layouts. Just design plain and simple web pages compliant with HTML5 and they will look OK.
Details are here: yegor256.github.io/tacit
Or simply download tacit.min.css
and use together with your HTML by adding:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="tacit.min.css"/>
</head>
</html>
This blog post explains it in even more details: Tacit, a CSS Framework Without Classes.
Fork repository, make changes, send us a pull request. We will review
your changes and apply them to the master
branch shortly, provided
they don't violate our quality standards. To avoid frustration, before
sending us your pull request please run full Grunt build:
$ npm install
$ grunt
To develop it locally, open index.html
in a browser and then run:
$ grunt dev
Now you can make changes to .scss
files and refresh the page in the browser.
CSS will be recompiled automatically on every change you make.
If you have problems running the Grunt build you may need to install scss-lint and compass:
gem update --system && gem install scss_lint compass
If you have questions or general suggestions, don't hesitate to submit a new Github issue.