beautification of editor

This commit is contained in:
ville rantanen
2018-07-21 20:23:45 +03:00
parent bd301eca6f
commit 90660262d5
5 changed files with 86 additions and 22 deletions

View File

@@ -275,6 +275,39 @@ tr:nth-child(odd) {
/* editor */
#editor_container {
float:right;
padding: 12px;
border: 4px solid var(--border-color);
background-color: var(--background-dark-color);
line-height: 2em;
-webkit-border-bottom-left-radius: 15px;
-moz-border-radius-bottomleft: 15px;
border-bottom-left-radius: 15px;
}
#editor_form {
}
#editor_area {
width: 40vw;
float: left;
}
#editor_preview {
width: 40vw;
margin-left: 2vw;
float: left;
line-height: normal;
}
#editor_preview p {
margin-top: 0px;
}
.href_button {
margin-left: 3em;
cursor: pointer;
text-decoration: underline;
}