2025-03-09 16:29:43 +01:00
|
|
|
[v-cloak] {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2025-02-23 10:27:17 +01:00
|
|
|
body {
|
|
|
|
|
display: flex;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-09 16:29:43 +01:00
|
|
|
#app {
|
2025-02-23 10:27:17 +01:00
|
|
|
flex-grow: 1;
|
|
|
|
|
}
|
2025-03-09 16:29:43 +01:00
|
|
|
#app select {
|
|
|
|
|
cursor: pointer
|
|
|
|
|
}
|
|
|
|
|
#app img.device {
|
2025-02-23 10:27:17 +01:00
|
|
|
width: 300px;
|
|
|
|
|
}
|
2025-03-09 16:29:43 +01:00
|
|
|
#app div.autoscroller {
|
2025-02-23 10:27:17 +01:00
|
|
|
overflow: auto;
|
|
|
|
|
max-height: 300px;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
|
}
|
2025-03-09 16:29:43 +01:00
|
|
|
#app pre.term {
|
2025-02-23 10:27:17 +01:00
|
|
|
font-family: monospace;
|
|
|
|
|
}
|
2025-03-09 16:29:43 +01:00
|
|
|
#app .overlay {
|
2025-02-23 10:27:17 +01:00
|
|
|
display: flex !important;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
2025-03-09 16:29:43 +01:00
|
|
|
#app .console {
|
2025-02-23 10:27:17 +01:00
|
|
|
overflow: auto;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
2025-03-09 16:29:43 +01:00
|
|
|
#app .console .holder {
|
2025-02-23 10:27:17 +01:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
}
|
2025-03-09 16:29:43 +01:00
|
|
|
#app .console-input {
|
2025-02-23 10:27:17 +01:00
|
|
|
flex-grow: 1;
|
|
|
|
|
display: block;
|
|
|
|
|
appearance: none;
|
|
|
|
|
background: transparent;
|
|
|
|
|
border: 0;
|
|
|
|
|
font-family: monospace;
|
|
|
|
|
font-size: .875rem;
|
|
|
|
|
}
|
2025-03-09 16:29:43 +01:00
|
|
|
#app .console-input:focus, #app console-input:focus{
|
2025-02-23 10:27:17 +01:00
|
|
|
outline: none;
|
2025-05-04 10:11:29 +02:00
|
|
|
}
|
|
|
|
|
#app .pre {
|
|
|
|
|
white-space-collapse: preserve;
|
|
|
|
|
min-width: 300px;
|
|
|
|
|
}
|
|
|
|
|
#app .version {
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
#app .version div.field {
|
|
|
|
|
min-width: 140px;
|
2025-02-23 10:27:17 +01:00
|
|
|
}
|