staxman-old/static/css/editor.css

48 lines
565 B
CSS
Raw Normal View History

2023-11-23 13:18:00 +00:00
.editor form {
display: flex;
flex-direction: column;
gap: 1ch;
& .row {
display: flex;
gap: 0.5ch;
& input,
& button {
font-size: 13pt;
padding: 6px 10px;
&.wide {
padding: 6px 20px;
}
}
}
2023-11-24 23:45:54 +00:00
& .error {
border-radius: 3px;
background-color: #500F1C;
color: #FF9592;
padding: 4px 8px;
display: none;
}
2023-11-23 13:18:00 +00:00
}
#editor {
border-width: 3px;
min-height: 50vh;
}
.ace_editor {
min-height: 50vh;
border: 3px solid #5958B1;
border-radius: 3px;
2023-11-24 23:45:54 +00:00
&.checked {
border-color: #46A758;
}
&.err {
border-color: #E5484D;
}
2023-11-23 13:18:00 +00:00
}