63 lines
1.2 KiB
CSS
63 lines
1.2 KiB
CSS
#query_result_container {
|
|
display: flex;
|
|
}
|
|
|
|
.query_result_editor_container {
|
|
width: 40%;
|
|
}
|
|
|
|
.query_result_editor_container p {
|
|
padding-left: 40px;
|
|
font-size: medium;
|
|
margin-top: 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.query_result_editor {
|
|
width: 100%;
|
|
height: 65em;
|
|
border-top: 1px solid #e2e2e2;
|
|
border-right: 1px solid #e2e2e2;
|
|
border-bottom: 1px solid #e2e2e2;
|
|
-moz-border-radius: 4px;
|
|
-webkit-border-radius: 4px;
|
|
border-radius: 4px;
|
|
font-family: monospace;
|
|
}
|
|
|
|
.query_result_view_container {
|
|
width: 60%;
|
|
margin-left: 30px;
|
|
}
|
|
|
|
.query_result_view_container p {
|
|
padding-left: 40px;
|
|
font-size: medium;
|
|
margin-top: 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.query_result_view {
|
|
min-height: 65em;
|
|
border-top: 1px solid #e2e2e2;
|
|
border-left: 1px solid #e2e2e2;
|
|
border-bottom: 1px solid #e2e2e2;
|
|
-moz-border-radius: 4px;
|
|
-webkit-border-radius: 4px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.edit-button {
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.ace_editor,
|
|
.ace_editor * {
|
|
font-family: "Monaco", "Menlo", "Ubuntu Mono", "Droid Sans Mono", "Consolas",
|
|
monospace !important;
|
|
font-size: 14px !important;
|
|
font-weight: 400 !important;
|
|
letter-spacing: 0 !important;
|
|
}
|