smon/static/less/datapoints.less

84 lines
1.2 KiB
Plaintext
Raw Normal View History

2024-06-25 08:59:07 +02:00
@import "theme-@{THEME}.less";
2024-04-30 08:04:16 +02:00
#datapoints {
display: grid;
grid-template-columns: repeat(6, min-content);
2024-04-30 08:04:16 +02:00
grid-gap: 8px 16px;
margin-top: 16px;
2024-06-25 10:50:31 +02:00
background-color: @bg3;
2024-06-25 18:19:15 +02:00
padding: 16px 24px;
2024-06-25 10:50:31 +02:00
width: min-content;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
2024-04-30 08:04:16 +02:00
2024-05-20 19:40:19 +02:00
.group {
font-size: 1.10em;
font-weight: bold;
2024-05-28 07:37:22 +02:00
color: @color3;
2024-05-20 19:40:19 +02:00
margin-top: 1.5em;
padding-bottom: 4px;
2024-05-28 07:37:22 +02:00
}
2024-06-24 11:18:51 +02:00
2024-05-28 07:37:22 +02:00
h2 {
2024-05-20 19:40:19 +02:00
border-bottom: unset;
}
2024-04-30 08:04:16 +02:00
.header {
font-weight: @bold;
2024-05-20 19:40:19 +02:00
font-size: 0.85em;
2024-06-25 18:19:15 +02:00
color: @text3;
2024-04-30 08:04:16 +02:00
}
div {
white-space: nowrap;
2024-06-24 11:18:51 +02:00
align-self: center;
2024-04-30 08:04:16 +02:00
}
2024-05-05 20:16:28 +02:00
.icons {
display: flex;
gap: 12px;
align-items: center;
}
2024-06-24 11:18:51 +02:00
img.info {
height: 20px;
}
2024-05-05 20:16:28 +02:00
}
#values {
display: grid;
grid-template-columns: repeat(2, min-content);
gap: 16px;
white-space: nowrap;
2024-04-30 08:04:16 +02:00
}
.widgets {
display: grid;
grid-template-columns: min-content 1fr;
gap: 8px 16px;
.label {
margin-top: 4px;
2024-05-25 15:00:01 +02:00
white-space: nowrap;
2024-04-30 08:04:16 +02:00
}
input[type="text"], textarea {
width: 100%;
}
.datapoints {
display: grid;
grid-template-columns: min-content 1fr;
gap: 6px 8px;
2024-05-01 20:01:43 +02:00
font-family: "Roboto Mono", monospace;
2024-04-30 08:04:16 +02:00
margin-bottom: 8px;
}
.action {
display: grid;
grid-template-columns: min-content min-content;
grid-gap: 8px;
}
}