84 lines
1.2 KiB
Plaintext
84 lines
1.2 KiB
Plaintext
@import "theme-@{THEME}.less";
|
|
|
|
#datapoints {
|
|
display: grid;
|
|
grid-template-columns: repeat(6, min-content);
|
|
grid-gap: 8px 16px;
|
|
margin-top: 16px;
|
|
background-color: @bg3;
|
|
padding: 16px;
|
|
width: min-content;
|
|
border-top-left-radius: 8px;
|
|
border-top-right-radius: 8px;
|
|
|
|
.group {
|
|
font-size: 1.10em;
|
|
font-weight: bold;
|
|
color: @color3;
|
|
margin-top: 1.5em;
|
|
padding-bottom: 4px;
|
|
}
|
|
|
|
h2 {
|
|
border-bottom: unset;
|
|
}
|
|
|
|
|
|
.header {
|
|
font-weight: @bold;
|
|
font-size: 0.85em;
|
|
color: @text1;
|
|
}
|
|
|
|
div {
|
|
white-space: nowrap;
|
|
align-self: center;
|
|
}
|
|
|
|
.icons {
|
|
display: flex;
|
|
gap: 12px;
|
|
align-items: center;
|
|
}
|
|
|
|
img.info {
|
|
height: 20px;
|
|
}
|
|
}
|
|
|
|
#values {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, min-content);
|
|
gap: 16px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.widgets {
|
|
display: grid;
|
|
grid-template-columns: min-content 1fr;
|
|
gap: 8px 16px;
|
|
|
|
.label {
|
|
margin-top: 4px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
input[type="text"], textarea {
|
|
width: 100%;
|
|
}
|
|
|
|
.datapoints {
|
|
display: grid;
|
|
grid-template-columns: min-content 1fr;
|
|
gap: 6px 8px;
|
|
font-family: "Roboto Mono", monospace;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.action {
|
|
display: grid;
|
|
grid-template-columns: min-content min-content;
|
|
grid-gap: 8px;
|
|
}
|
|
}
|