46 lines
495 B
CSS
46 lines
495 B
CSS
body {
|
|
margin: 0;
|
|
height: 100vh;
|
|
}
|
|
|
|
#app {
|
|
height: 100%;
|
|
}
|
|
|
|
.column {
|
|
width: 50%;
|
|
height: 100%;
|
|
float: left;
|
|
}
|
|
|
|
#editor {
|
|
overflow: hidden;
|
|
}
|
|
|
|
#terminal {
|
|
background: black;
|
|
}
|
|
|
|
#runButton {
|
|
position: absolute;
|
|
top: 25px;
|
|
right: calc(50% + 25px);
|
|
}
|
|
|
|
#formatButton {
|
|
position: absolute;
|
|
bottom: 25px;
|
|
right: calc(50% + 25px);
|
|
visibility: hidden;
|
|
}
|
|
|
|
#formatButton.visible {
|
|
visibility: visible;
|
|
}
|
|
|
|
#backButton {
|
|
position: absolute;
|
|
left: 25px;
|
|
bottom: 25px;
|
|
}
|