You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.1 KiB
HTML
55 lines
1.1 KiB
HTML
<!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>
|
|
|