Skip to content

Commit

Permalink
added readme
Browse files Browse the repository at this point in the history
  • Loading branch information
PascalKleindienst committed Oct 24, 2016
1 parent 2e91fbd commit 7220f41
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# consola.css

consola.css is a lightweight CSS micro-framework for a console like style.
It is very minimalistic and has therefore a small footprint *(only **3.78 kB gzipped**)*

It's also in SCSS and CSS and comes with a gulpfile for customizing the build.

## Installation
Via bower
```
$ bower install --save consola.css
```

Via npm
```
$ npm install --save consola.css
```

### Using the SCSS

In your SCSS file, you can import consola.css:

```scss
@import "/path/to/consola.css/scss/consola";
```

Variables are stored in the `scss/_variables.scss` file, so they can be easily customized:
```scss
$font-size: 14px;
$red: #ff0000;

@import "/path/to/consola.css/scss/consola";
```

### Using the CSS
Just add a `<link>` in your `<head>` of either `consola.css` or
the minified version `consola.min.css`.

## License
MIT License - Copyright (c) 2016 Pascal Kleindienst

See [LICENSE](LICENSE) for full license description

## Credits
* [Normalize](http://necolas.github.io/normalize.css) for the foundation.
* [Flexboxgrid](https://github.com/kristoferjoseph/flexboxgrid) for the grid style.

0 comments on commit 7220f41

Please sign in to comment.