A simple node.js web service for compiling Stylus cascading stylesheets.
button
border-radius: 5px;
border: 1px solid #eee;
padding: 5px 10px;
$ curl -F style=@my.styl http://styl.herokuapp.com
button {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
border: 1px solid #eee;
padding: 5px 10px;
}
button
border-radius: 5px;
border: 1px solid #eee;
padding: 5px 10px;
$ curl -F style=@my.styl http://styl.herokuapp.com?compress
button{-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;border:1px solid #eee;padding:5px 10px}