2020-03-23 14:48:49 +00:00
|
|
|
|
2020-04-24 20:38:03 +00:00
|
|
|
body {
|
|
|
|
background-color: LightCyan;
|
|
|
|
}
|
2020-03-23 14:48:49 +00:00
|
|
|
|
2020-04-28 21:39:18 +00:00
|
|
|
|
2020-03-23 14:48:49 +00:00
|
|
|
.title_disconnected {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title_connected {
|
|
|
|
color: green;
|
|
|
|
}
|
2020-04-24 20:38:03 +00:00
|
|
|
|
|
|
|
input, label, button, select {
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 10px;
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
div {
|
|
|
|
/*border: 1px solid black; */
|
|
|
|
background-color: LightSteelBlue;
|
|
|
|
}
|
|
|
|
|
|
|
|
div p {
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 12px;
|
|
|
|
margin-top: 2px;
|
|
|
|
margin-bottom: 2px;
|
|
|
|
background-color: LightSteelBlue;
|
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
|
|
|
/*border: 1px solid red;*/
|
|
|
|
width: 50px;
|
|
|
|
padding-left: 10px;
|
|
|
|
margin-top: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-10-12 20:52:08 +00:00
|
|
|
|
2020-04-24 20:38:03 +00:00
|
|
|
.uiCtlDiv {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
background-color: LightBlue;
|
|
|
|
}
|
|
|
|
|
|
|
|
.uiCtlDiv input {
|
|
|
|
background-color: PowderBlue;
|
|
|
|
}
|
|
|
|
|
|
|
|
.uiNumberDiv input {
|
|
|
|
width: 50px;
|
|
|
|
}
|
|
|
|
|
2020-04-27 16:31:10 +00:00
|
|
|
.uiPanel {
|
2020-04-24 20:38:03 +00:00
|
|
|
background-color: LightBlue;
|
|
|
|
}
|
2020-04-27 16:31:10 +00:00
|
|
|
|
2020-04-28 21:39:18 +00:00
|
|
|
.uiRow {
|
2020-04-24 20:38:03 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
background-color: LightBlue;
|
|
|
|
}
|
|
|
|
|
2020-04-28 12:42:16 +00:00
|
|
|
.uiCol {
|
2020-04-27 16:31:10 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
background-color: LightBlue;
|
|
|
|
}
|
|
|
|
|
2021-10-12 20:52:08 +00:00
|
|
|
|
|
|
|
/* outer log div - contains the log label and the log scroller */
|
|
|
|
.uiLogDiv {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
align-items: flex-start; /* left justify */
|
|
|
|
align-content: flex-stretch; /* fill horizontal space */
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.uiLogDiv label {
|
|
|
|
width: 100%;
|
2021-10-31 19:31:36 +00:00
|
|
|
background-color: LightSteelBlue;
|
|
|
|
|
2021-10-12 20:52:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* log scroller */
|
|
|
|
.uiLog {
|
|
|
|
display:flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
height: 150px;
|
2021-10-31 19:31:36 +00:00
|
|
|
overflow-x: hidden; /* 'hidden' to remove x scroll bar */
|
|
|
|
overflow-y: auto;
|
2021-10-12 20:52:08 +00:00
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
background-color: PowderBlue;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The log text */
|
2021-10-31 19:31:36 +00:00
|
|
|
.uiLog pre {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* outer list div - contains the list label and the list scroller */
|
|
|
|
.uiListDiv {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
align-items: flex-start; /* left justify */
|
|
|
|
align-content: flex-stretch; /* fill horizontal space */
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.uiListDiv label {
|
|
|
|
width: 100%;
|
|
|
|
background-color: LightSteelBlue;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.uiList {
|
|
|
|
display:flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
height: 100px;
|
|
|
|
overflow-x: hidden; /* 'hidden' to remove scroll bar */
|
|
|
|
overflow-y: auto;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
background-color: PowderBlue;
|
2021-10-12 20:52:08 +00:00
|
|
|
}
|