Files
atom/plugins/project/project.html

34 lines
376 B
HTML

<style>
#project {
min-width: 200px;
height: 100%;
background-color: white;
}
ul {
margin: 0;
padding: 0;
}
li {
list-style-type: none;
}
li.file {
color: red;
}
li.dir {
color: blue;
}
li:hover {
background-color: grey;
}
</style>
<div id='project'>
<div class='cwd'></div>
<ul class='files'></ul>
</div>