<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

svg {
    position: fixed;
    z-index: 1;
    pointer-events: none
}

#flexcontainer {
    /*background-color: blue;*/
    position: fixed;
    display: flex;
    font-family: monospace;
    width: 100%;
    height: 100%;
    left: 5px;
    top: 10px;
  }



input.codebutton {
    font-family: inherit;
    background-color: powderblue;
}
input.pcbutton {
    font-family: inherit;
    background-color: rgb(0, 119, 255);
}
input.stackbutton {
    font-family: inherit;
    size: 50;
    background-color: rgb(0, 255, 128);
    pointer-events: none
}

#textcontainer {
    margin: 0;
    padding: 0;
    font-family: inherit
  }
#buttoncontainer {
    display : block;
    width: 60;
    font-family: inherit
  }
#execcontainer {
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    font-family: inherit
  }
#codecontainer {
    width: 160;
    margin: 0;
    padding: 0;
    font-family: inherit;
    overflow-y: scroll;
  }
#stackcontainer {
    display: flex;
    justify-content: flex-start;
    flex-direction: column-reverse;
    font-family: inherit;
    text-align: center;
    margin: 2;
    height: 600;
    width: 150;
}
#ctxcontainer, #objcontainer {
    display: flex;
    justify-content: flex-start;
    flex-direction: column-reverse;
    padding: 20;
    font-family: inherit;
    height: 600;
}
 
div.cc, div.ctx, div.obj{
    width: 150;
    margin: 20;
    padding: 2;
}
div.cc{
    background-color: red;
}
div.ctx{
    background-color: rgb(241, 141, 141);
}
div.obj{
    background-color: rgb(16, 202, 87);
}</pre></body></html>