Files
freeCodeCamp/unpacked.css
Alex Chaffee 590f646263 feat(seed): "unpack" and "repack" scripts
add "npm run seed" as alias to "node seed"

unpack tests and solution into HTML file; add titles and help text; style unpacked file

enable running unpacked assert tests in browser

Using browserify, compile "tape", "lodash", jQuery into "unpacked-bundle.js" for use during in-browser unpacked tests

feat(seed): diff after repacking

feat(seed): unpacked tests use Browser TAP chrome dev tool if available
2018-04-03 19:52:56 +05:30

23 lines
384 B
CSS

body {
font-family: sans-serif;
}
script.unpacked, pre.unpacked {
display: block;
font-family: monospace;
font-size: 14px;
white-space: pre;
border: 1px solid blue;
background: #EFEFEF;
padding: .5em 1em;
margin: 1em;
overflow: auto;
}
div.unpacked {
border: 1px solid black;
padding: .5em 1em;
margin: 1em;
overflow: auto;
}