Use autoprefixer

This commit is contained in:
Jeremy Thomas 2016-02-13 20:13:35 +00:00
parent e019b0d217
commit 65ab35064b
6 changed files with 542 additions and 204 deletions

View File

@ -8,7 +8,9 @@ Bulma is a modern CSS framework based on [Flexbox](https://developer.mozilla.org
Bulma is in early but active development! Try it out now:
```npm install bulma```
```
npm install bulma
```
Feel free to raise an issue or submit a pull request. In the meantime, check the [documentation](http://bulma.io/documentation/overview/).

648
css/bulma.css vendored

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

3
css/bulma.min.css vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -21,11 +21,14 @@
"url": "https://github.com/jgthms/bulma/issues"
},
"devDependencies": {
"autoprefixer": "^6.3.3",
"captain-git-hook": "~1.0.5",
"node-sass": "~3.4.2"
"node-sass": "^3.4.2"
},
"scripts": {
"build": "npm run clean && npm run build-sass && npm run build-sass-min",
"autoprefix": "postcss --use autoprefixer --output css/bulma.css css/bulma.css",
"autoprefix-min": "postcss --use autoprefixer --output css/bulma.min.css css/bulma.min.css",
"build": "npm run clean && npm run build-sass && npm run build-sass-min && npm run autoprefix && npm run autoprefix-min",
"build-sass": "node-sass --output-style expanded --source-map true --output css/ bulma.sass --outFile css/bulma.css",
"build-sass-min": "node-sass --output-style compressed --source-map true --output css/ bulma.sass css/bulma.min.css",
"clean": "rm -rf css",