Commit 0bc7a085 by Nick Schonning

Remove examples

Examples been moved to https://github.com/andrew/node-sass-example
parent 856dd972
/**
* Module dependencies.
*/
var connect = require('connect'),
sass = require('../sass');
// Setup server
// $ curl http://localhost:3000/test.css
var server = connect.createServer(
sass.middleware({
src: __dirname,
dest: __dirname + '/public',
debug: true,
outputStyle: 'compressed'
}),
connect.static(__dirname + '/public')
);
server.listen(3000);
console.log('server listening on port 3000');
*.css
\ No newline at end of file
#navbar {
width: 70%;
height: 23px; }
#navbar ul {
list-style-type: none; }
#navbar li {
float: left;
a {
font-weight: bold;
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment