1
0

befunge93_runner (WIP)

This commit is contained in:
2018-01-02 00:25:09 +01:00
parent e56ca264a3
commit 9f3ae53eb1
5 changed files with 205 additions and 24 deletions

View File

@@ -7,9 +7,8 @@
.bce_code_data {
overflow-x: auto;
white-space: pre;
font-family: $FONT_CODE;
padding: 9.5px;
padding: 5px 9.5px;
font-size: 10pt;
}
@@ -33,6 +32,7 @@
}
.ctrl_btn {
user-select: none;
display: block;
border: 1px solid #000;
background: #444;
@@ -67,4 +67,44 @@
} .ctrl_btn_left, .ctrl_btn_right { display: flex; flex-direction: column; margin: 0; }
}
}
}
.bce_code_out {
display: flex;
flex-direction: row;
background: #BBB;
.bce_code_out_text {
font-family: $FONT_CODE;
overflow-y: auto;
overflow-x: auto;
background: #FFF;
color: #000;
flex-grow: 1;
margin: 0 4px 4px 4px;
border: 1px solid #888;
min-height: 200px;
}
.bce_code_out_stack {
font-family: $FONT_CODE;
overflow-y: scroll;
overflow-x: auto;
background: #FFF;
color: #000;
margin: 0 4px 4px 4px;
width: 200px;
border: 1px solid #888;
min-height: 200px;
}
}
@media (max-width: 767px) {
.bce_code_out {
flex-direction: column;
.bce_code_out_text { flex-grow: 0; min-height: 100px;}
.bce_code_out_stack { width: auto; min-height: 150px;}
}
}
.b93rnr_outpanel_hidden { visibility: collapse; display: none; }