mirror of
https://github.com/atom/atom.git
synced 2026-01-23 13:58:08 -05:00
22 lines
229 B
HTML
22 lines
229 B
HTML
<style>
|
|
ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
li {
|
|
list-style-type: none;
|
|
}
|
|
|
|
li:hover {
|
|
background-color: grey;
|
|
}
|
|
|
|
</style>
|
|
|
|
<div id='cwd'></div>
|
|
<ul id='files'></ul>
|
|
|
|
<script>
|
|
require('project');
|
|
</script> |