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
Just add it to your HTML (replace VERSION
with the latest version number,
which you can find here):
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="//cdn.rawgit.com/yegor256/tacit/gh-pages/tacit-css-VERSION.min.css"/>
</head>
</html>
Or simply download tacit-css.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.
If you are interested in contributing please refer to CONTRIBUTING.md
The following list is of tested browsers for compatibility. We don't have any guarantees of compatibility for other browsers, but as soon as possible will verify and add more to the list. Some of these browsers present minor issues that are reported in the our issues list.
Browser/OS | Version | Compatible |
---|---|---|
Chrome | >= 60 | Yes |
Firefox | >= 56 | Yes |
Safari | >= 11 | Yes |
Opera | >= 48 | Yes |
Edge | >= 14 | Yes |
Chrome (iOS) | >= 60 | Yes |
Safari (iOS) | - | Yes |
Internet Explorer | >= 11 | Yes |
If you have questions or general suggestions, don't hesitate to submit a new Github issue.
Copyright (c) 2015-2017 Yegor Bugayenko
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.