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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|