@import url("./dialogs.css");
@import url("./webapp/splitters.css");

body {
    font-family:Arial, Helvetica, sans-serif;
    font-size: 10pt;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin: 0;
}

.tinylogo {
    margin: 0;
    width: 100vw;
    height: 100vh;
}

.input-area {
    margin: 8px;
    display: flex;
    flex-direction: column;
    .editor {
        flex: 1;
        margin: 8px 0;
    }
    .buttons {
        margin-bottom: 8px;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        column-gap: 10px;
    }
}

.logo-output {
    border: 1px solid gray;
    padding: 5px;
    font-family: monospace;
    font-size: 10pt;
    white-space: pre;
    overflow: auto;
    div {
        white-space: break-spaces;
        word-break: break-word;
        tab-size: 4;
        min-height: 1em;
    }
    .error {
        color: red;
    }
}
.logo-graphics {
    border: 1px solid gray;
    position: relative;
    * {
        position: absolute;
    }
}
#help {
    padding: 5px;
    display: flex;
    flex-direction: column;
}
#help-command {
    flex: 1;
    margin-bottom: 5px;
    width: 10px; /* need a width for flex to work */
}
#help-output {
    flex: 1;
    overflow-y: auto;
    border: 1px solid black;
    a {
        text-decoration: none;
        &:hover {
            color: red;
        }
    }
}