54 lines
959 B
CSS
54 lines
959 B
CSS
#query_result_container {
|
|
display: flex;
|
|
}
|
|
|
|
.query_result_editor_container {
|
|
width: 30%;
|
|
}
|
|
|
|
.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: 70%;
|
|
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;
|
|
}
|