styletron-loader

0.6.0 • Public • Published

styletron-loader

Webpack loader to load CSS into a styletron compatible CSS object by specifying a string with CSS selectors.

Very much inspired by:

Install

npm install -D styletron-loader

or

yarn add --dev styletron-loader

Usage

Documentation: Using loaders Create an entry to load .css files in your webpack.config:

module: {
  loaders: [{
      test: /\.css$/,
      loaders: [ 'styletron-loader' ],
      exclude: /node_modules/
    }
  ]
}

Requiring CSS rules:

.button {
  font-size: 1.5em;
  color: fuchsia;
}
.button:hover,
.button:focus {
  color: crimson;
}
@media screen and (max-width: 768px) {
  .button {
    font-size: 2em;
  }
}
.red-bg {
  background-color: red
}
var util = require('styletron-loader/util');
var parsedCSS = require('./styles.css');
 
parsedCSS['.button']
/*
{ 'font-size': '1.5em',
  color: 'fuchsia',
  ':hover': { color: 'crimson' },
  ':focus': { color: 'crimson' },
  '@media screen and (max-width: 768px)': { 'font-size': '2em' }
}
*/
 
var styles = util(parsedCSS);
 
styles('.button .red-bg');
/*
{ 'font-size': '1.5em',
  color: 'fuchsia',
  ':hover': { color: 'crimson' },
  ':focus': { color: 'crimson' },
  '@media screen and (max-width: 768px)': { 'font-size': '2em' },
  'background-color': 'red'
}
*/

Readme

Keywords

none

Package Sidebar

Install

npm i styletron-loader

Weekly Downloads

0

Version

0.6.0

License

MIT

Last publish

Collaborators

  • deam