0.0.2 • Published 13 years ago

styleless v0.0.2

Weekly downloads
2
License
-
Repository
github
Last release
13 years ago

styleless

Yet another alternative to CSS, with variables, functions, mixins. But now it's all js.

Install

npm install styleless

Examples

  a: {
    'text-decoration': 'none',

    ':hover': {
      'border-width': '1px'
    }
  }
}

} })

  </pre>
</td>
<td>
  <pre>

#header h1 { font-size: 26px; font-weight: bold; } #header p { font-size: 12px; } #header p a { text-decoration: none; } #header p a:hover { border-width: 1px; }

  </pre>