Files
architype/architype.css

73 lines
951 B
CSS
Raw Normal View History

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;
}
.editor {
2019-05-25 00:03:19 +00:00
list-style: none;
margin: 0;
padding: 0;
height: 100%;
width: 400px;
overflow-y: scroll;
}
.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;
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
}
.editor li.node {
2019-05-25 00:03:19 +00:00
background-color: #daf0db;
}
.editor li.group {
2019-05-26 02:53:55 +00:00
background-color: #d8e6f4;
}
.editor li:focus {
2019-05-25 00:03:19 +00:00
border-color: red;
outline: none;
2019-05-25 00:03:19 +00:00
}
.editor li input {
2019-05-25 00:03:19 +00:00
background-color: rgba(255,255,255,0.8);
border: 3px solid black;
padding: 4px;
font-family: 'Courier', monospace;
2019-05-25 00:03:19 +00:00
}
.editor li input:focus {
border-color: red;
outline: none;
}
2019-06-20 21:26:31 +00:00
.editor .editor {
2019-06-20 21:26:31 +00:00
margin: 5px;
2019-06-20 23:35:13 +00:00
}