&yet visual style, branding assets and basic CSS components
npm install yeticssyeti.css is a pattern library consisting of lightweight, reusable modules. It has been built to reflect &yet's visual and branding guidelines.
* How To Run
* Structure
* How To Include In Your App
* Custom Fonts
* CSS Reset
* Documentation
* Contributing
* License
For development mode:
```
npm install
npm start
The demo site will be available at http://localhost:8080. You can use the livereload extension and files will automatically rebuild and reload in the browser when you change them.
and can be installed through npm. Variables and mixins can be found in lib/yeticss/globals and components in lib/yeticss/components. Markup for each component lives in public/templates.Note: installing yeticss will not include
assets or public.`
├── assets
│ ├── logos
│ └── swatches
├── lib
│ └── yeticss
│ ├── components
│ ├── globals
│ └── index.styl
└── public
├── css
├── images
├── js
├── styl
└── templates
`How to include in your app
yeti.css is a Stylus plugin, so you just need to ensure Stylus knows to use the plugin, and then import it in your app.
Make sure that you have
stylus available from command line:`
npm install -g stylus
`$3
If you are compiling your Stylus with its command line interface, maybe directly or via a Makefile or similar, it's as easy as:
1.
npm install yeticss --save-dev
2. Add "-u yeticss" to the command: stylus -u yeticss ./path/to/app.styl
3. Now you can import yeticss, or a subcomponent of yeticss, in your app's .styl files:
`stylus
@import 'yeticss'
// or
@import 'yeticss/components/type'
``$3
> NOTE: if you are using webpack 2, check here for how to add stylus plugins with stylus-loader: https://github.com/shama/stylus-loader#webpack-2
To add yeticss to a webpack application, simply
npm install yeticss --save-dev and then add it to the stylus use list as supported by stylus-loader.For example:
`javascript
// in webpack.config.js// import yeticss somewhere in the file
var yeticss = require('yeticss');
module.exports = {
//... other webpack config ...
module: {
loaders: [
// configure stylus loader however you prefer
{ test: /\.styl$/, loader: 'style-loader!css-loader!stylus-loader' }
]
},
// configure stylus loader to use the yeticss plugin
stylus: {
use: [yeticss()]
}
};
``css
/ now in your app.styl you can: /
@import 'yeticss'
``A CSS reset is included in yeti.css by default (namely normalize.css).