mirror of
https://github.com/atom/atom.git
synced 2026-01-23 05:48:10 -05:00
34 lines
376 B
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>
|