ServeurDeTest
Pierre BALLANDRAS 3 years ago
parent 247879b24c
commit 11cd680ed0

@ -2,16 +2,36 @@
visibility: hidden; visibility: hidden;
} }
html{
height: 100%;
}
body{ body{
display: flex; display: flex;
flex-direction: row; flex-direction: row;
flex-wrap: nowrap; flex-wrap: nowrap;
justify-content: space-around; justify-content: space-around;
align-items: stretch; align-items: stretch;
/* height: 100%; */
height: 100%;
margin: 0;
padding: 0;
}
div.enigme{
width: 33%;
height: 100%;
margin: 0;
padding: 0;
} }
div.editor_class{
width: 33%;
min-height: 100%;
margin-bottom: 0;
}
div{ div.compiler_class{
height: 250px; width: 33%;
width: 250px;
} }

@ -43,7 +43,7 @@ var editor = ace.edit("editor");
editor.setTheme("ace/theme/vibrant_ink"); editor.setTheme("ace/theme/vibrant_ink");
editor.getSession().setMode("ace/mode/python"); editor.getSession().setMode("ace/mode/python");
editor.setFontSize("16px"); editor.setFontSize("16px");
editor.container.style.height = "250px" // editor.container.style.height ="700px";
editor.setOptions({ editor.setOptions({
enableLiveAutocompletion: true, enableLiveAutocompletion: true,
copyWithEmptySelection: true, copyWithEmptySelection: true,

Loading…
Cancel
Save