stylingutilities
Version:
lightweight css utilities library for the front-end web
43 lines (35 loc) • 897 B
Markdown
This guide is for those who want to contribute. Please read if you do
- [Style Guide](
- [Style Guide Example](
`.styl`
- NO semicolons `;`
- NO colons `:`
- USE curly braces `{}`
- For variables do not use `$`
- For colors use hex color code `
- Add any new classes to `THIS_REPOSITORY/docs/index.html`
```stylus
// wrong (don't use colon separator and semicolon)
.class {
background-color:
}
// wrong (don't use colon separator)
.class {
background-color:
}
// wrong (don't use semicolon)
.class {
background-color
}
// wrong ( use curly braces {} )
.class
background-color
// correct
.class {
background-color
}
```