Initial commit

This commit is contained in:
2025-10-22 22:06:16 +02:00
commit d8ca4e154f
141 changed files with 32231 additions and 0 deletions

View File

@@ -0,0 +1,79 @@
@use '../node_modules/morphux/style.css';
@use './dashboard.scss';
@use './tabs.scss';
@use './calibration.scss';
:root {
--mux-primary-color: #247476;
--mux-primary-off-color: #1d5253;
}
body {
&:not(.ntsh_service) {
.ntsh_buttons {
display: none;
}
.mux_menubar-locater.mux_left {
.mux_menubar-item {
display: none;
}
}
.only-service {
display: none;
}
}
&.ntsh_service {
.no-service {
display: none;
}
}
}
.sn {
position: absolute;
inset: 0px;
overflow: hidden;
.ntsh_menubar {
position: absolute;
top: 0px;
left: 0px;
right: 0px;
height: 100%;
.mux_menubar {
.mux_menubar-item.mux_menubar-item-selected {
background: var(--mux-primary-off-color);
}
}
}
.ntsh_logs {
position: absolute;
inset: 0px;
box-sizing: border-box;
padding: var(--mux-edge-offset);
font-family: monospace;
background: black;
overflow-y: auto;
.ntsh_log {
&.ntsh_log-fill {
height: 100%;
display: flex;
justify-content: center;
align-items: center;
color: #939393;
}
&.ntsh_log-normal {
color: #c7c7c7;
}
}
}
}