https://github.com/concisecss/concise.css-gem
[Deprecated] Official Ruby on Rails gem for Concise framework.
https://github.com/concisecss/concise.css-gem
Last synced: 8 months ago
JSON representation
[Deprecated] Official Ruby on Rails gem for Concise framework.
- Host: GitHub
- URL: https://github.com/concisecss/concise.css-gem
- Owner: ConciseCSS
- License: other
- Created: 2014-07-15T15:59:36.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-03-02T20:01:58.000Z (almost 10 years ago)
- Last Synced: 2024-10-27T04:34:53.220Z (about 1 year ago)
- Language: CSS
- Homepage: http://concisecss.com
- Size: 92.8 KB
- Stars: 12
- Watchers: 9
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [
](http://concisecss.com/)
[](https://codeclimate.com/github/ConciseCSS/concise.css-gem)
[](http://badge.fury.io/rb/concisecss)
# Important: This project is deprecated and there is no plans to support it in the future.
Concise is a lightweight, front-end framework that provides a number of great features without the bloat. Concise is built based on Object-Oriented CSS principles and keeps semantics in mind to provide a small learning curve, and a high level of customization.
## Installation Instructions
Add this line to your application's Gemfile:
gem 'concisecss', '~> 2.0.0'
And then execute:
$ bundle
Or install it yourself as:
$ gem install concisecss
## Usage
Not every single project you are working needs all of the Concise JavaScript files. You can update your `application.js` with the files you need
```js
//= require concisecss/navigation
//= require concisecss/non-responsive
//= require concisecss/naver
//= require concisecss/dropdown
```
To add the CSS just require
```css
*= require concise
```
If you intend to extend or override Concise, you might want to create an override file. For example: `app/assets/stylesheets/custom.scss` and then import concise
```css
@import "concise";
```
## Documentation
What would a project be without great documentation? Concise has documentation for everything that is included in the framework. If you see something that is missing or incorrect, don't hesitate to open up an issue on our GitHub repo.
Check out our documentation here: [http://concisecss.com](http://concisecss.com)
### Changelog
You can keep up-to-date with the changes that we have made via our [releases page](https://github.com/ConciseCSS/concise.css-gem/releases).
## Versioning
Concise is currently maintained under the [Semantic Versioning guidelines](http://semver.org/).
## Elsewhere
[](https://facebook.com/ConciseCSS)
[](https://twitter.com/ConciseCSS)
## License
Code released under the [MIT license](https://github.com/ConciseCSS/concise.css/blob/master/LICENSE). Documentation released under [Creative Commons](http://creativecommons.org/licenses/by-sa/4.0/).