This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * The first commented line is your dabblet’s title | |
| */ | |
| * { | |
| margin: 0; | |
| padding: 0 | |
| } | |
| ul { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * The first commented line is your dabblet’s title | |
| */ | |
| * { | |
| margin: 0; | |
| padding: 0 | |
| } | |
| ul { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Flexible Field layout | |
| */ | |
| body { | |
| background: #f4f4f4; | |
| color: #444; | |
| font: 16px/1.2em Helvetica, Arial, Sans-serif; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var static = require('node-static'); | |
| // | |
| // Create a node-static server instance to serve the './public' folder | |
| // | |
| var file = new static.Server('./public'); | |
| require('http').createServer(function (request, response) { | |
| request.addListener('end', function () { | |
| // |
OlderNewer