2019-05-25 00:03:19 +00:00
|
|
|
body {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
|
|
font-family: 'Courier', monospace;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-21 18:15:44 +00:00
|
|
|
.editor {
|
2019-05-25 00:03:19 +00:00
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 400px;
|
|
|
|
|
|
|
|
|
|
overflow-y: scroll;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-21 18:15:44 +00:00
|
|
|
.editor:focus {
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor li {
|
2019-05-25 00:03:19 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
2019-06-20 21:26:31 +00:00
|
|
|
justify-content: flex-start;
|
|
|
|
|
flex-wrap: wrap;
|
2019-05-25 00:03:19 +00:00
|
|
|
white-space: pre;
|
|
|
|
|
|
2019-06-20 21:26:31 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
width: 100%;
|
2019-05-25 00:03:19 +00:00
|
|
|
padding: 3px;
|
2019-05-27 03:13:11 +00:00
|
|
|
border: 5px solid rgba(0,0,0,0.0);
|
2019-06-20 23:35:13 +00:00
|
|
|
|
|
|
|
|
cursor: default;
|
2019-05-25 00:03:19 +00:00
|
|
|
}
|
|
|
|
|
|
2019-06-21 18:15:44 +00:00
|
|
|
.editor li.node {
|
2019-05-25 00:03:19 +00:00
|
|
|
background-color: #daf0db;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-21 18:15:44 +00:00
|
|
|
.editor li.group {
|
2019-05-26 02:53:55 +00:00
|
|
|
background-color: #d8e6f4;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-21 18:15:44 +00:00
|
|
|
.editor li:focus {
|
2019-05-25 00:03:19 +00:00
|
|
|
border-color: red;
|
2019-05-27 03:13:11 +00:00
|
|
|
outline: none;
|
2019-05-25 00:03:19 +00:00
|
|
|
}
|
|
|
|
|
|
2019-06-21 18:15:44 +00:00
|
|
|
.editor li input {
|
2019-05-25 00:03:19 +00:00
|
|
|
background-color: rgba(255,255,255,0.8);
|
2019-05-27 03:13:11 +00:00
|
|
|
border: 3px solid black;
|
2019-05-25 04:44:11 +00:00
|
|
|
padding: 4px;
|
|
|
|
|
font-family: 'Courier', monospace;
|
2019-05-25 00:03:19 +00:00
|
|
|
}
|
2019-05-27 03:13:11 +00:00
|
|
|
|
2019-06-21 18:15:44 +00:00
|
|
|
.editor li input:focus {
|
2019-05-27 03:13:11 +00:00
|
|
|
border-color: red;
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
2019-06-20 21:26:31 +00:00
|
|
|
|
2019-06-21 18:15:44 +00:00
|
|
|
.editor .editor {
|
2019-06-20 21:26:31 +00:00
|
|
|
margin: 5px;
|
2019-06-20 23:35:13 +00:00
|
|
|
}
|