All Projects → ConciseCSS → Concise.css

ConciseCSS / Concise.css

Licence: mit
A CSS framework that's lightweight and easy-to-use. Give up the bloat. Stop tripping over your classes. Be Concise.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Concise.css

A17t
An atomic design toolkit for pragmatists
Stars: ✭ 236 (-74.92%)
Mutual labels:  framework, design, postcss
Milligram
A minimalist CSS framework.
Stars: ✭ 9,568 (+916.79%)
Mutual labels:  framework, design, minimalist
Gmdjs
Grid Material Design
Stars: ✭ 24 (-97.45%)
Mutual labels:  framework, sass
Typescript Plugin Css Modules
A TypeScript language service plugin providing support for CSS Modules.
Stars: ✭ 520 (-44.74%)
Mutual labels:  sass, postcss
Inkline
Inkline is the customizable Vue.js UI/UX Library designed for creating flawless responsive websites.
Stars: ✭ 606 (-35.6%)
Mutual labels:  framework, sass
Material Framework
[Unmaintained] An easy to use material design based framework.
Stars: ✭ 383 (-59.3%)
Mutual labels:  framework, design
Tentcss
🌿 A CSS survival kit. Includes only the essentials to make camp.
Stars: ✭ 400 (-57.49%)
Mutual labels:  framework, sass
Ngx Admin
Customizable admin dashboard template based on Angular 10+
Stars: ✭ 23,286 (+2374.6%)
Mutual labels:  framework, sass
Uix Kit
A free UI toolkit based on some common libraries for building beautiful responsive website, compatible with Bootstrap v4.
Stars: ✭ 318 (-66.21%)
Mutual labels:  design, sass
Vuesax Next
Vuesax v4: framework components for Vuejs
Stars: ✭ 773 (-17.85%)
Mutual labels:  framework, sass
Postcss
Transforming styles with JS plugins
Stars: ✭ 25,612 (+2621.79%)
Mutual labels:  framework, postcss
Primitive
⛏️ ‎ A front-end design toolkit for developing web apps.
Stars: ✭ 783 (-16.79%)
Mutual labels:  framework, sass
Gulp Tutorial
Code examples for my Gulp.js tutorial series
Stars: ✭ 383 (-59.3%)
Mutual labels:  sass, postcss
Lab
React UI component design tool
Stars: ✭ 349 (-62.91%)
Mutual labels:  framework, design
Rollup Plugin Postcss
Seamless integration between Rollup and PostCSS.
Stars: ✭ 507 (-46.12%)
Mutual labels:  sass, postcss
Blueprint
A React-based UI toolkit for the web
Stars: ✭ 18,376 (+1852.82%)
Mutual labels:  design, sass
Naomi
Sublime Text enhanced syntax highlighting for JavaScript ES6/ES7/ES2015/ES2016/ES2017+, Babel, FlowType, React JSX, Styled Components, HTML5, SCSS3, PHP 7, phpDoc, PHPUnit, MQL4. Basic: Git config files.
Stars: ✭ 544 (-42.19%)
Mutual labels:  sass, postcss
Vue Bootstrap With Material Design
Vue Bootstrap with Material Design - Powerful and free UI KIT
Stars: ✭ 803 (-14.67%)
Mutual labels:  framework, design
Horse
Fast, opinionated, minimalist web framework for Delphi
Stars: ✭ 295 (-68.65%)
Mutual labels:  framework, minimalist
Kratos Boilerplate
🔥 A simple boilerplate for creating statics PWA using Webpack, Pug, PostCSS and CSS Modules
Stars: ✭ 308 (-67.27%)
Mutual labels:  sass, postcss

Installing the CLI Locally

To install the Concise CLI in a project just run the following command:

npm install -D ConciseCSS/concise.css#dev

Using Packages and Writing Styles

The Concise CLI can be used independently of any styles. In principle, it would will with any other CSS library, framework or any existing project so long as the code is plain CSS or contains only the features that can be compiled with PostCSS. Of course, one can start writing everything from scratch using Concise as well.

The core library contains the very basic styles that one might use, and contains most of the code that was available on Concise v4. This can be installed by running:

npm install -D ConciseCSS/core#master

You can then include Concise in your project by importing it into your stylesheet:

@import '@concisecss/core';

The previous line will include all the styles that Concise provides. However, it is also possible to include only the specific files that you would like:

@import '@concisecss/core/settings.pcss';
@import '@concisecss/core/base.pcss';

Concise will automatically import the files from your /node_modules directory.

Once the packages are released and published on NPM they will be able to be installed by their name too: concise.css for the CLI and @concisecss/<package> for the other packages, including core.

Compiling

Run the Concise CLI on the main file from the package.json scripts:

concise compile main.pcss main.css

To execute the CLI manually after installing locally (without the package.json scripts):

npx concise compile main.pcss main.css

The flag -w will also watch the files for changes.

Changelog

You can keep up-to-date with the changes that we have made via our releases page.

Elsewhere

Like Concise on Facebook Follow Concise on Twitter

License

Code released under the MIT license. Documentation released under Creative Commons.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].