Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: PascalKleindienst/consola.css
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.4.0
Choose a base ref
...
head repository: PascalKleindienst/consola.css
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 15 commits
  • 21 files changed
  • 1 contributor

Commits on Oct 27, 2016

  1. Copy the full SHA
    ddc9555 View commit details
  2. added muted text

    PascalKleindienst committed Oct 27, 2016
    Copy the full SHA
    ab919fc View commit details
  3. added typo docs

    PascalKleindienst committed Oct 27, 2016
    Copy the full SHA
    695df75 View commit details
  4. Copy the full SHA
    f349761 View commit details
  5. Copy the full SHA
    2663c79 View commit details

Commits on Oct 31, 2018

  1. Copy the full SHA
    e881398 View commit details
  2. Copy the full SHA
    61fcfb7 View commit details
  3. Copy the full SHA
    b498f8c View commit details
  4. Copy the full SHA
    c6ed079 View commit details
  5. Copy the full SHA
    63c66ff View commit details
  6. compiled styles

    PascalKleindienst committed Oct 31, 2018
    Copy the full SHA
    d66ec09 View commit details
  7. updated doc

    PascalKleindienst committed Oct 31, 2018
    Copy the full SHA
    03d4ed0 View commit details
  8. bump version number

    PascalKleindienst committed Oct 31, 2018
    Copy the full SHA
    973eb13 View commit details
  9. Copy the full SHA
    66b4785 View commit details
  10. bump version

    PascalKleindienst committed Oct 31, 2018
    Copy the full SHA
    dc129cb View commit details
Showing with 4,625 additions and 199 deletions.
  1. +4 −4 README.md
  2. +19 −0 couscous.yml
  3. +272 −105 css/consola.css
  4. +2 −2 css/consola.min.css
  5. +30 −1 docs/README.md
  6. +2 −0 docs/helpers.md
  7. +220 −0 docs/typography.md
  8. +5 −1 gulpfile.js
  9. +3,790 −0 package-lock.json
  10. +9 −5 package.json
  11. +6 −20 scss/_buttons.scss
  12. +34 −20 scss/_colors.scss
  13. +1 −1 scss/_lists.scss
  14. +0 −10 scss/_mixins.scss
  15. +161 −0 scss/_navbar.scss
  16. +24 −1 scss/_variables.scss
  17. +3 −2 scss/consola.scss
  18. +1 −1 website/bower.json
  19. +17 −0 website/css/all.css
  20. +25 −0 website/default.twig
  21. +0 −26 website/home.twig
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ layout: home
# consola.css [![NPM][icon-npm]][link-npm] [![Bower][icon-bower]][link-bower] [![NPM Downloads][icon-npm-dt]][link-npm] [![license][icon-license]][link-license] [![Code Climate][icon-codeclimate]][link-codeclimate]
consola.css is a lightweight CSS micro-framework for a console like style.

It is very minimalistic and has therefore a small footprint of under **5 kB gzipped**.
It is very minimalistic and has therefore a small footprint of under **5.2 kB gzipped**.
It also includes SCSS and CSS files and comes with a gulpfile for customizing the build.

## Installation
@@ -36,7 +36,7 @@ $red: #ff0000;
```

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

## License
@@ -49,8 +49,8 @@ See [LICENSE](LICENSE) for full license description
* [Flexboxgrid](https://github.com/kristoferjoseph/flexboxgrid) for the grid style.


[icon-codeclimate]: https://img.shields.io/codeclimate/github/PascalKleindienst/consola.css.svg?style=flat-square
[link-codeclimate]: https://codeclimate.com/github/PascalKleindienst/consola.css
[icon-codeclimate]: https://api.codeclimate.com/v1/badges/7fe8ca1359f70a009a19/maintainability
[link-codeclimate]: https://codeclimate.com/github/PascalKleindienst/consola.css/maintainability
[icon-license]: https://img.shields.io/github/license/PascalKleindienst/consola.css.svg?style=flat-square
[link-license]: https://raw.githubusercontent.com/PascalKleindienst/consola.css/master/LICENSE
[icon-npm]: https://img.shields.io/npm/v/consola.css.svg?style=flat-square
19 changes: 19 additions & 0 deletions couscous.yml
Original file line number Diff line number Diff line change
@@ -20,6 +20,25 @@ menu:
text: Responsive Grid System
url: docs/grid-system.html

typography:
section: Typography
items:
typography-headings:
text: Headings
url: docs/typography.html
typography-inline-text-elements:
text: Inline Text Elements
url: docs/typography.html#inline-text-elements
typography-alignment-classes:
text: Alignment Classes
url: docs/typography.html#alignment-classes
typography-transformation-classes:
text: Transformation Classes
url: docs/typography.html#transformation-classes
typography-lists:
text: Lists
url: docs/typography.html#lists

code:
section: Code
items:
Loading