2024-04-29 08:36:13 +02:00
|
|
|
html {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
*,
|
|
|
|
*:before,
|
|
|
|
*:after {
|
|
|
|
box-sizing: inherit;
|
|
|
|
}
|
|
|
|
*:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
[onClick] {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
background: #282828;
|
|
|
|
font-family: "Roboto", sans-serif;
|
2024-04-30 08:04:16 +02:00
|
|
|
font-weight: 300;
|
2024-04-29 08:36:13 +02:00
|
|
|
color: #d5c4a1;
|
|
|
|
font-size: 11pt;
|
|
|
|
}
|
|
|
|
h1,
|
|
|
|
h2 {
|
|
|
|
margin-top: 0px;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
h1 {
|
|
|
|
font-size: 1.5em;
|
|
|
|
color: #fb4934;
|
2024-05-01 21:02:45 +02:00
|
|
|
font-weight: 500;
|
2024-04-29 08:36:13 +02:00
|
|
|
}
|
|
|
|
h2 {
|
|
|
|
font-size: 1.25em;
|
2024-05-01 21:02:45 +02:00
|
|
|
font-weight: 500;
|
2024-04-29 08:36:13 +02:00
|
|
|
}
|
2024-04-30 08:04:16 +02:00
|
|
|
a {
|
2024-05-01 10:02:33 +02:00
|
|
|
color: #fabd2f;
|
2024-04-30 08:04:16 +02:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
b {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
2024-04-29 08:36:13 +02:00
|
|
|
.roboto-light {
|
|
|
|
font-family: "Roboto", sans-serif;
|
|
|
|
font-weight: 300;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
.roboto-medium {
|
|
|
|
font-family: "Roboto", sans-serif;
|
|
|
|
font-weight: 500;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
input[type="text"],
|
2024-04-30 08:04:16 +02:00
|
|
|
textarea,
|
|
|
|
select {
|
2024-04-29 08:36:13 +02:00
|
|
|
font-family: "Roboto Mono", monospace;
|
|
|
|
background: #202020;
|
|
|
|
color: #d5c4a1;
|
|
|
|
padding: 4px 8px;
|
|
|
|
border: none;
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
button {
|
|
|
|
background: #202020;
|
|
|
|
color: #d5c4a1;
|
|
|
|
padding: 8px 32px;
|
2024-05-01 10:02:33 +02:00
|
|
|
border: 1px solid #535353;
|
2024-04-29 08:36:13 +02:00
|
|
|
font-size: 1em;
|
|
|
|
height: 3em;
|
|
|
|
}
|
2024-04-30 08:04:16 +02:00
|
|
|
button:focus {
|
|
|
|
background: #333;
|
|
|
|
}
|
2024-05-01 20:01:43 +02:00
|
|
|
.line {
|
|
|
|
grid-column: 1 / -1;
|
|
|
|
border-bottom: 1px solid #4e4e4e;
|
|
|
|
}
|
|
|
|
span.date {
|
|
|
|
color: #d5c4a1;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
span.time {
|
|
|
|
font-size: 0.9em;
|
|
|
|
color: #d5c4a1;
|
|
|
|
}
|
|
|
|
span.seconds {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
label {
|
|
|
|
user-select: none;
|
|
|
|
}
|
2024-04-29 08:36:13 +02:00
|
|
|
.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;
|
2024-05-04 22:07:41 +02:00
|
|
|
grid-template-columns: min-content min-content 1fr;
|
2024-04-29 08:36:13 +02:00
|
|
|
gap: 6px 8px;
|
|
|
|
margin-bottom: 8px;
|
2024-05-04 22:07:41 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
.widgets .datapoints .invalid {
|
|
|
|
color: #c83737;
|
|
|
|
}
|
|
|
|
.widgets .datapoints .delete img {
|
|
|
|
height: 16px;
|
2024-04-29 08:36:13 +02:00
|
|
|
}
|
|
|
|
.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: #202020;
|
|
|
|
min-height: 8em;
|
|
|
|
}
|
|
|
|
.widgets .action #run-result.ok {
|
|
|
|
color: #d5c4a1;
|
|
|
|
}
|
|
|
|
.widgets .action #run-result.error {
|
|
|
|
color: #fb4934;
|
|
|
|
}
|