Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 856 Bytes

File metadata and controls

22 lines (15 loc) · 856 Bytes

320Stylus

A tiny as possible boilerplate for rapid websites development using the mobile-first approach. This is built to be used alongside with stylus.

Requirements

  • Node.js (Required by stylus).
  • Stylus installed. Just npm install -g stylus.

Usage

  1. Take stylesheets and copy it to your public_html/ or whatever you call it.
  2. Run $ stylus stylesheets/style.styl
  3. Link the resulting stylesheets/style.css to your HTML.
  4. Make changes to anything at stylesheets/ and re-run steps 2 and 3.

Remember, each change you make to stylesheets/style.css will be rewritten with the compiled version thrown by stylus, so please make your changes on the styl files instead of the css directly.