Initial state of the file manager app

This commit is contained in:
yflory
2016-11-03 18:51:30 +01:00
parent 5f6ebb5cc1
commit ce9eb47351
3 changed files with 194 additions and 0 deletions

54
www/file/inner.html Normal file
View File

@@ -0,0 +1,54 @@
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type"/>
<link rel="stylesheet" href="/bower_components/components-font-awesome/css/font-awesome.min.css">
<script src="/bower_components/jquery/dist/jquery.min.js"></script>
<style>
html, body {
width: 100%;
height: 100%;
box-sizing: border-box;
padding: 0;
margin: 0;
position: relative;
}
#tree {
position:absolute;
top: 0;
left: 0;
bottom: 0;
right: 70%;
border: 2px solid blue;
box-sizing: border-box;
background: white;
}
#tree li {
cursor: pointer;
}
#tree li span:hover {
text-decoration: underline;
}
#content {
position: absolute;
top: 0;
left: 30%;
bottom: 0;
right: 0;
border: 2px solid green;
box-sizing: border-box;
background: #eee;
}
.folder, .file {
margin-right: 5px;
}
</style>
</head>
<body>
<div id="tree">
</div>
<div id="content">
</div>
</body>
</html>