45 lines
861 B
CSS
45 lines
861 B
CSS
.widgets {
|
|
display: grid;
|
|
grid-template-columns: min-content 1fr;
|
|
gap: 8px 16px;
|
|
}
|
|
.widgets .label {
|
|
margin-top: 4px;
|
|
}
|
|
.widgets input[type="text"],
|
|
.widgets textarea {
|
|
width: 100%;
|
|
}
|
|
.widgets .datapoints {
|
|
font: "Roboto Mono", monospace;
|
|
display: grid;
|
|
grid-template-columns: min-content min-content 1fr;
|
|
gap: 6px 8px;
|
|
margin-bottom: 8px;
|
|
white-space: nowrap;
|
|
}
|
|
.widgets .datapoints .invalid {
|
|
color: #c83737;
|
|
}
|
|
.widgets .datapoints .delete img {
|
|
height: 16px;
|
|
}
|
|
.widgets .action {
|
|
display: grid;
|
|
grid-template-columns: min-content min-content 1fr;
|
|
grid-gap: 8px;
|
|
}
|
|
.widgets .action #run-result {
|
|
font-family: 'Roboto Mono', monospace;
|
|
margin-left: 16px;
|
|
padding: 16px;
|
|
background: #1b4e78;
|
|
min-height: 8em;
|
|
}
|
|
.widgets .action #run-result.ok {
|
|
color: #555;
|
|
}
|
|
.widgets .action #run-result.error {
|
|
color: #fb4934;
|
|
}
|