Skip to content

deamme/styletron-loader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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'
}
*/

About

Webpack loader to load CSS into a styletron compatible CSS object.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published