2019-02-09 06:00:30 +00:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
text-decoration: none;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100vh;
|
|
|
|
}
|
|
|
|
#main {
|
|
|
|
flex: 1;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.editor-container {
|
|
|
|
flex: 1;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
margin: 8px;
|
|
|
|
}
|
|
|
|
.editor-container:first-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
.editor-header {
|
|
|
|
display: flex;
|
|
|
|
height: 48px;
|
|
|
|
padding: 4px 8px;
|
|
|
|
}
|
|
|
|
.editor-header > li:last-child {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
.editor-header > li > span {
|
|
|
|
height: 38px;
|
|
|
|
line-height: 38px;
|
|
|
|
}
|
|
|
|
.editor-header > li > a {
|
|
|
|
height: 38px;
|
|
|
|
line-height: 38px;
|
|
|
|
padding: .3em .5em;
|
|
|
|
border: 1px solid red;
|
|
|
|
}
|
|
|
|
.editor-validation {
|
|
|
|
padding: 9px 11px;
|
|
|
|
color: green;
|
|
|
|
background-color: lightgreen;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
.editor-validation-invalid {
|
|
|
|
color: red;
|
|
|
|
background-color: pink;
|
|
|
|
}
|
|
|
|
.editor-area {
|
|
|
|
flex: 1;
|
|
|
|
border: 1px solid lightgray;
|
|
|
|
}
|
|
|
|
.editor-info {
|
|
|
|
margin-top: 6px;
|
|
|
|
height: 160px;
|
|
|
|
border: 1px solid lightgray;
|
|
|
|
padding: 8px;
|
2021-02-04 15:45:18 +00:00
|
|
|
overflow-y: auto;
|
2019-02-09 06:00:30 +00:00
|
|
|
}
|
|
|
|
.editor-info li {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2022-05-06 14:22:45 +00:00
|
|
|
.editor-info li:hover{
|
2022-05-29 05:02:18 +00:00
|
|
|
background-color: lightyellow;
|
2022-05-06 14:22:45 +00:00
|
|
|
}
|
2020-05-25 02:14:43 +00:00
|
|
|
.editor-sub-header {
|
|
|
|
padding: 4px 8px;
|
|
|
|
}
|