Skip to content
This repository has been archived by the owner on Nov 2, 2019. It is now read-only.

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
jxnblk committed Feb 14, 2016
0 parents commit 2f8b6df
Show file tree
Hide file tree
Showing 6 changed files with 113 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

css
Empty file added .npmignore
Empty file.
10 changes: 10 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

# The MIT License (MIT)
Copyright (c) 2013 – 2016 Brent Jackson

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

42 changes: 42 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@

# ace-css

Full-featured [Basscss](http://basscss.com) package for web apps

ace-css contains the core modules and several addons for use in larger web apps.

## Features

- All typography and layout utilities from the core Basscss module
- Base element styles from basscss-basic
- Form styles from basscss-forms
- Button styles with solid and outline styles, along with size modifiers
- Range input styles from basscss-input-range
- Progress element styles from basscss-progress
- Responsive margin and padding utilities
- Media Object
- Colors, background colors, and border colors from [colors.css](http://clrs.cc)
- Darken and lighten background utilities
- Background image utilities

## Install

```sh
npm i ace-css
```

## Usage

### PostCSS

```css
@import 'ace-css';
```

### Webpack

```js
import aceCss from 'ace-css/css/ace.min.css'
```

[MIT License](LICENSE.md)
29 changes: 29 additions & 0 deletions index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/*! ace.css | https://github.com/basscss/ace | MIT License */

@import 'basscss-basic';

@import 'basscss-addons/modules/forms';
@import 'basscss-addons/modules/input-range';
@import 'basscss-addons/modules/progress';

@import 'basscss-addons/modules/btn';
@import 'basscss-addons/modules/btn-sizes';
@import 'basscss-addons/modules/btn-primary';
@import 'basscss-addons/modules/btn-outline';

@import 'basscss-addons/modules/media-object';

@import 'basscss';

@import 'basscss-addons/modules/responsive-margin';
@import 'basscss-addons/modules/responsive-padding';

@import 'basscss-addons/modules/colors';
@import 'basscss-addons/modules/background-colors';
@import 'basscss-addons/modules/border-colors';
@import 'basscss-addons/modules/darken';
@import 'basscss-addons/modules/lighten';
@import 'basscss-addons/modules/background-images';

@import 'basscss-addons/modules/all';

30 changes: 30 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "ace-css",
"version": "1.0.0",
"description": "Full-featured Basscss package for web apps",
"main": "index.js",
"scripts": {
"start": "mkdir -p css && postcss index.css -u postcss-import -u postcss-custom-media -u postcss-custom-properties -u postcss-calc -u postcss-color-function -u postcss-remove-root -u autoprefixer -o css/ace.css",
"minify": "postcss css/ace.css -u cssnano -o css/ace.min.css",
"prepublish": "npm start && npm run minify"
},
"author": "Brent Jackson",
"license": "MIT",
"dependencies": {
"basscss": "^8.0.0",
"basscss-addons": "^1.0.0-beta2",
"basscss-basic": "^1.0.0",
"colors.css": "^2.3.0"
},
"devDependencies": {
"autoprefixer": "^6.3.3",
"cssnano": "^3.5.2",
"postcss-calc": "^5.2.0",
"postcss-cli": "^2.5.1",
"postcss-color-function": "^2.0.0",
"postcss-custom-media": "^5.0.1",
"postcss-custom-properties": "^5.0.0",
"postcss-import": "^8.0.2",
"postcss-remove-root": "0.0.2"
}
}

0 comments on commit 2f8b6df

Please sign in to comment.