I use kss-node and trying out the simplest project. It just uses the example from the Quickstart guide.
The css is in source/style.css
// Hard rules
//
// Markup: <hr>
//
// Style guide: hard-rule
hr {
border-top: 5px solid #999;
}
I then run
npm-exec kss-node --source source --destination styleguide --css ../source/style.css
The first problem was that the --css
option needs the relative path from where the styleguide later is.
But the hr element still looks the same and not 5px thick. The file is included in the html but Dev Tools says "0 rules" are applied