2019-06-21 19:11:37 +00:00
|
|
|
.google {
|
|
|
|
|
--focus: #ff0000;
|
|
|
|
|
--node: #4285f4;
|
|
|
|
|
--group: #0f9d58;
|
|
|
|
|
--link: #f4b400;
|
|
|
|
|
--text: #ffffff;
|
|
|
|
|
--border: #f5f5f5;
|
|
|
|
|
}
|
|
|
|
|
|
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-06-21 19:11:37 +00:00
|
|
|
color: var(--text);
|
|
|
|
|
|
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-06-21 19:11:37 +00:00
|
|
|
background-color: var(--node);
|
2019-05-25 00:03:19 +00:00
|
|
|
}
|
|
|
|
|
|
2019-06-21 18:15:44 +00:00
|
|
|
.editor li.group {
|
2019-06-21 19:11:37 +00:00
|
|
|
background-color: var(--group);
|
2019-05-26 02:53:55 +00:00
|
|
|
}
|
|
|
|
|
|
2019-06-21 19:11:37 +00:00
|
|
|
.editor li.link {
|
|
|
|
|
background-color: var(--link);
|
|
|
|
|
}
|
2019-06-21 18:15:44 +00:00
|
|
|
.editor li:focus {
|
2019-06-21 19:11:37 +00:00
|
|
|
border-color: var(--focus);
|
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-06-21 19:11:37 +00:00
|
|
|
background-color: rgba(255,255,255,0.2);
|
|
|
|
|
border: 3px solid var(--border);
|
2019-05-25 04:44:11 +00:00
|
|
|
padding: 4px;
|
|
|
|
|
font-family: 'Courier', monospace;
|
2019-06-21 19:11:37 +00:00
|
|
|
color: var(--text);
|
|
|
|
|
width: 200px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor li input::-webkit-input-placeholder {
|
|
|
|
|
color: var(--border);
|
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-06-21 19:11:37 +00:00
|
|
|
border-color: var(--focus);
|
2019-05-27 03:13:11 +00:00
|
|
|
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
|
|
|
}
|