2025-08-20 20:10:44 +02:00

82 lines
1.0 KiB
CSS

* {
box-sizing: border-box;
}
body {
margin: 0;
height: 100vh;
}
main {
display: flex;
flex-direction: row;
height: 100vh;
}
#buttons {
width: 100%;
display: flex;
flex-direction: row;
justify-content: end;
align-items: center;
gap: 10px;
}
#buttons button {
margin: 5px;
padding: 10px;
min-width: 100px;
}
#dashboard {
display: flex;
flex-direction: column;
gap: 5px;
width: 40vw;
justify-content: space-evenly;
align-items: center;
}
canvas {
background-color: black;
width: 100%;
}
#console {
width: 100%;
padding: 5px;
}
#console pre {
color: white;
background-color: black;
margin: 0;
width: 100%;
font-size: 1rem;
height: 24rem;
}
#console input {
width: 100%;
margin: 0;
outline: none;
border: 2px solid white;
padding: none;
color: white;
background-color: black;
font-family: monospace;
font-size: 1rem;
}
#editor-area {
width: 100%;
height: 100%;
}
#editor {
margin: 0;
width: 100%;
height: 100%;
font-size: 16px;
}