Sha256: 031e3c4573e04238025232562c70f597a3dbea218630680a9d7f119696a62224

Contents?: true

Size: 1.29 KB

Versions: 28

Compression:

Stored size: 1.29 KB

Contents

# EnglishTea

Atomic CSS from WorkingNotWorking.com

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'english_tea'
```

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install english_tea

Include in your application.css file:

    *= require english_tea

Alternatively you can include individual modules by using the index to include an entire module:

    *= require english_tea/setup
    *= require_tree english_tea/typography
    
    @import 'english_tea/setup';
    @import 'english_tea/typography';

Or just include the submodule you want directly:

    *= require english_tea/typography/fonts

    @import 'english_tea/typography/fonts';

## Customization

You can override things like colors, fonts and sizing like so:

    $english_tea: (
      "type-font-title": ('Comic Sans', 'Helvetica Neue', sans-serif),
      "color-1": (#a2f4fc, #2fa6ba, #248798, #1a7180)
    );

    @import 'english_tea';

Check out `app/assets/stylesheets/english_tea/setup/_config.scss` for the full list of default variables that you can override.

## Documentation

See https://workingnotworking.com/styleguide for tons of usage examples (coming soon).

## License

The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
english_tea-1.26.0 README.md
english_tea-1.25.0 README.md
english_tea-1.24.0 README.md
english_tea-1.23.0 README.md
english_tea-1.22.0 README.md
english_tea-1.21.0 README.md
english_tea-1.20.0 README.md
english_tea-1.19.0 README.md
english_tea-1.18.0 README.md
english_tea-1.17.0 README.md
english_tea-1.16.0 README.md
english_tea-1.15.0 README.md
english_tea-1.14.0 README.md
english_tea-1.13.0 README.md
english_tea-1.12.0 README.md
english_tea-1.11.0 README.md
english_tea-1.10.0 README.md
english_tea-1.9.0 README.md
english_tea-1.8.0 README.md
english_tea-1.7.0 README.md