@commitchange/commons.css

0.0.11 • Public • Published

includes utility classes + styles for core UI components:

docs: http://docs.commitchange.com/commons.css/

to use: npm install --save-dev @commitchange/commons.css

module list:

  • align
  • background
  • blockquote
  • border
  • button
  • color
  • cursor
  • form
  • grid
  • help box
  • hide
  • layout
  • list
  • margin
  • misc
  • opacity
  • padding
  • position
  • progress bar
  • shadow
  • table
  • tabs
  • type-scale
  • typography

We recommond using postcss and postcss-import for managing/building css:

example:

package.json

{
  "scripts": {
    "build-css": "postcss -c postcss-config.js",
    "watch-css": "postcss -c postcss-config.js -w"
   },
  "devDependencies": {
    "postcss": "5.2.4",
    "postcss-cli": "2.6.0",
    "postcss-import": "8.1.2",
    "@commitchange/commons.css": "0.0.1"
  }
  etc...
}

postcss-config.js

module.exports = {
  use: ['postcss-import']
, 'local-plugins' : true
, input: 'index.css'
, output: 'build.css'
}

index.css

@import '@commitchange/commons.css';

body {
  font-family: 'Comic Sans';
  etc...
}
npm run watch-css

Readme

Keywords

none

Package Sidebar

Install

npm i @commitchange/commons.css

Weekly Downloads

2

Version

0.0.11

License

MIT

Last publish

Collaborators

  • yutakahoulette
  • the_swerve