New Filestructure for Docker

This commit is contained in:
2026-07-31 23:53:14 +02:00
parent 1e10ed4de8
commit 5bcf2a3546
239 changed files with 710 additions and 2000 deletions
@@ -0,0 +1,152 @@
:root {
--sb-bg: #f8fafc;
--sb-card-bg: #ffffff;
--sb-text-main: #36454F;
--sb-text-muted: #64748b;
--sb-border: #e2e8f0;
--sb-hover: #f3f3f3;
--sb-radius: 12px;
/* Newly extracted color variables */
--sb-th-text: #1e293b;
--sb-th-border: #1e293b;
--sb-th-bg: #ffffff;
--sb-tr-even-bg: #f8f8f860;
--sb-changeable-bg: rgba(37, 99, 235, 0.02);
--sb-flash-highlight: #00ff99; /* Green flash for updates */
--font-numeric: 'Courier New', Courier, monospace;
--padding-td: clamp(3px, 2.5vh, 12px) clamp(4px, 2vw, 20px);
--padding-th: clamp(2px, 1.5vh, 6px) clamp(4px, 2vw, 20px);
}
@media (prefers-color-scheme: dark){
:root {
--sb-bg: #121212; /* Dark main background */
--sb-card-bg: #1a1a1a; /* Dark card surfaces */
--sb-text-main: #f5f5f5; /* Light grey/white text */
--sb-text-muted: #a0a0a0; /* Muted secondary text */
--sb-border: #2d2d2d; /* Soft dark border line */
--sb-hover: #252525; /* Subtle highlight on row hover */
--sb-radius: 12px;
/* Dark mode specific variables */
--sb-th-text: #ffffff; /* Crisp white headers */
--sb-th-border: #3d3d3d; /* Distinct header separation */
--sb-th-bg: #121212; /* Matches dark body background */
--sb-tr-even-bg: #1a1a1a40; /* Very soft zebra striping */
--sb-changeable-bg: rgba(240, 163, 236, 0.05); /* Soft background using the pink/purple accent */
--sb-flash-highlight: #39ff14; /* Vibrant neon green for live updates on dark backgrounds */
--font-numeric: 'Courier New', Courier, monospace;
--padding-td: clamp(3px, 2.5vh, 12px) clamp(4px, 2vw, 20px);
--padding-th: clamp(2px, 1.5vh, 6px) clamp(4px, 2vw, 20px);
}
}
/* Base Table Styling */
.customDisplayEditorTable {
width: 100%;
border-collapse: separate;
border-spacing: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
font-size: 0.95rem;
color: var(--sb-text-main);
text-align: left;
}
.customDisplayEditorTable th {
color: var(--sb-th-text);
border-bottom: solid 1px var(--sb-th-border);
font-weight: 600;
font-size: 0.9rem;
letter-spacing: 0.05em;
padding: var(--padding-th);
white-space: nowrap;
position: sticky;
background-color: var(--sb-th-bg);
top: 0;
z-index: 2;
}
.customDisplayEditorTable th sup {
font-size: 0.65rem;
margin-left: 2px;
vertical-align: super;
}
.customDisplayEditorTable td {
padding: var(--padding-td);
border-bottom: 1px solid var(--sb-border);
vertical-align: middle;
transition: background-color 0.2s ease;
}
.customDisplayEditorTable tbody > tr:nth-child(even) td {
background-color: var(--sb-tr-even-bg);
}
.customDisplayEditorTable tbody > tr:hover td {
background-color: var(--sb-hover) !important;
}
.customDisplayEditorTable td {
color: var(--sb-text-main);
font-size: 0.9rem;
}
.customDisplayEditorTable td.changebleValue {
font-family: var(--font-numeric);
font-size: 1.05rem;
color: var(--sb-text-main);
background-color: var(--sb-changeable-bg);
}
.customDisplayEditorTable tr:last-child td {
border-bottom: none;
}
.changebleValue.updated {
animation: flashHighlight 3.5s ease-out;
}
@keyframes flashHighlight {
0% { color: var(--sb-flash-highlight); }
100% { color: var(--sb-text-main); }
}
.singleValueSpan[data-bold="true"] {
font-weight: 600;
}
.staticText {
white-space: pre;
}
.tdSpan {
display: flex;
align-items: center;
}
.verticalLayoutEl {
display: grid;
grid-template-columns: 1fr;
}
.verticalLayoutElRow {
display: flex;
justify-content: end;
}
.verticalLayoutEl .changebleValue {
text-align: right;
}
.emtyPlaceholder {
color: transparent;
user-select: none;
}
.nonExistentEl {
display: none !important;
}
+315
View File
@@ -0,0 +1,315 @@
:root {
--header-bg: #f8fcffcc;
--header-border: 1px solid #ffffff4d;
--header-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
--header-top: 40px;
--header-clamp: clamp(0.5px, 0.225vw, 1px);
--accent: #391c36;
--menu-box-shadows: rgba(0, 0, 0, 0.1);
--menu-dropdown-bg: #fff;
--dropdown-el-hover: #f0f0f0;
--sidebar-dropdown: rgba(255, 255, 255, 0.4);
--sidebar-dropdown-shadow: rgba(0, 0, 0, 0.02);
--sidebar-dropdown-el-hover: rgba(0, 0, 0, 0.05);
}
@media (prefers-color-scheme: dark) {
:root {
--header-bg: #000000cc; /* Dark, semi-transparent background with blur support */
--header-border: 1px solid #ffffff10; /* Subtle, soft border for dark interfaces */
--header-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); /* Stronger shadow to stand out against dark backgrounds */
--header-top: 40px;
--header-clamp: clamp(0.5px, 0.225vw, 1px);
--accent: #f9d8f7; /* Brightened, vibrant purple/pink accent to pop on dark backgrounds */
--menu-box-shadows: rgba(0, 0, 0, 0.5); /* Deeper shadow for menu items */
--menu-dropdown-bg: #1a1a1a; /* Dark solid background for dropdowns */
--dropdown-el-hover: #2a2a2a; /* Slightly lighter dark tone for hover states */
--sidebar-dropdown: rgba(30, 30, 30, 0.6); /* Semi-transparent dark background for sidebar dropdowns */
--sidebar-dropdown-shadow: rgba(0, 0, 0, 0.2);
--sidebar-dropdown-el-hover: rgba(255, 255, 255, 0.08); /* Soft white highlight on hover */
}
}
header {
position: fixed;
top: calc(var(--header-clamp) * 40);
left: 50%;
transform: translateX(-50%);
width: calc(100% - 2 * var(--header-clamp) * 40);
max-width: var(--max-width-content);
display: flex;
justify-content: space-between;
align-items: center;
border-radius: calc(var(--header-clamp) * 24);
padding: calc(var(--header-clamp) * 16) calc(var(--header-clamp) * 40);
background-color: var(--header-bg);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: var(--heder-border);
box-shadow: var(--header-shadow);
z-index: 100;
transition: all 0.3s ease;
}
.rankLiveHeaderTitle {
display: inline-flex;
align-items: center;
text-decoration: none;
color: var(--accent);
font-size: 24px;
letter-spacing: 1.5px;
}
.menuLinksDiv {
display: flex;
flex-direction: row;
gap: 8px;
align-items: center;
}
.menuLinksDiv>a,
.menuLinksDiv>div>span {
padding: 8px 16px;
color: var(--accent);
text-decoration: none;
font-size: 18px;
font-weight: 400;
line-height: 1.25;
position: relative;
cursor: pointer;
transition: color 0.2s ease;
display: inline-flex;
align-items: center;
}
.menuLinksDiv .menu-icon {
margin-right: 8px;
width: 18px;
height: 18px;
opacity: 0.85;
}
.menuLinksDiv>div {
position: relative;
}
.menuLinksDiv>a::after,
.menuLinksDiv>div>span::after {
content: "";
position: absolute;
left: 16px;
right: 16px;
bottom: 2px;
height: 2px;
background-color: var(--accent);
transform: scaleX(0);
transition: transform 0.3s ease;
}
.menuLinksDiv>div>span {
display: inline-flex;
align-items: center;
gap: 8px;
}
.menuLinksDiv>div>span>svg.menu-chevron {
transition: transform 0.3s ease;
}
.menuLinksDiv>div>span:hover>svg.menu-chevron,
.menuLinksDiv>div.open>span>svg.menu-chevron {
transform: rotate(180deg);
}
.menuLinksDiv>a:hover::after,
.menuLinksDiv>div>span:hover::after,
.menuLinksDiv>div.open>span::after {
transform: scaleX(1);
}
.menuLinksDiv .dropdown {
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%);
background-color: var(--menu-dropdown-bg);
border-radius: 8px;
box-shadow: 0 4px 12px var(--menu-box-shadows);
padding: 8px 0;
display: none;
min-width: 160px;
z-index: 101;
}
.menuLinksDiv .dropdown::before {
content: "";
position: absolute;
top: -15px;
left: 0;
right: 0;
height: 15px;
background: transparent;
}
.menuLinksDiv .dropdown a {
display: block;
padding: 8px 16px;
color: var(--accent);
text-decoration: none;
font-size: 16px;
transition: background-color 0.2s ease;
}
.dropdown a:hover, .dropdown form:hover {
background-color: var(--dropdown-el-hover);
}
.sidebar {
display: flex;
flex-direction: column;
height: 100vh;
background-color: var(--header-bg);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border-right: 1px solid rgba(255, 255, 255, 0.3);
box-shadow: 4px 0 24px rgba(0, 0, 0, 0.06);
padding: calc(var(--header-clamp) * 60) 24px 32px 24px;
gap: 8px;
width: 288px;
}
.sidebar>a,
.sidebar>div>.menu-item {
color: var(--accent);
text-decoration: none;
font-size: 18px;
font-weight: 500;
padding: 14px 16px;
border-radius: 12px;
transition: all 0.2s ease;
display: flex;
align-items: center;
cursor: pointer;
}
.sidebar>a:hover,
.sidebar>a:active,
.sidebar>div>.menu-item:hover,
.sidebar>div.open>.menu-item {
background-color: rgba(0, 0, 0, 0.014);
transform: translateX(4px);
}
.sidebar .menu-icon {
margin-right: 14px;
opacity: 0.85;
flex-shrink: 0;
}
.sidebar>div>.menu-item>.menu-chevron {
height: 16px;
width: 16px;
transition: transform 0.3s ease;
}
.sidebar>div.open>.menu-item>.menu-chevron {
transform: rotate(180deg);
}
.sidebar .dropdown {
background-color: var(--sidebar-dropdown);
border-radius: 12px;
box-shadow: inset 0 2px 8px var(--sidebar-dropdown-shadow);
padding: 8px;
margin: 4px 16px 8px 16px;
display: none;
min-width: 160px;
}
.sidebar .dropdown a, .sidebar button {
display: block;
padding: 10px 16px;
color: var(--accent);
text-decoration: none;
font-size: 16px;
border-radius: 8px;
transition: all 0.2s ease;
}
.sidebar .dropdown a:hover {
background-color: var(--sidebar-dropdown-el-hover);
transform: translateX(2px);
}
.sidebar a,
.sidebar>div {
-webkit-tap-highlight-color: transparent !important;
outline: none;
}
@media (max-width: 920px) {
.burgerMenuDiv {
display: flex !important;
flex-direction: column;
justify-content: space-between;
width: calc(var(--header-clamp) * 30);
height: calc(var(--header-clamp) * 21);
cursor: pointer;
z-index: 99;
-webkit-tap-highlight-color: transparent;
position: relative;
}
.burgerMenuLine {
height: calc(var(--header-clamp) * 3);
width: 100%;
background-color: var(--accent);
border-radius: calc(var(--header-clamp) * 3);
transition: all 0.3s ease;
}
.burgerMenuDiv.active .burgerMenuLine:nth-child(1) {
transform: translateY(calc(var(--header-clamp) * 9)) rotate(45deg);
}
.burgerMenuDiv.active .burgerMenuLine:nth-child(2) {
opacity: 0;
}
.burgerMenuDiv.active .burgerMenuLine:nth-child(3) {
transform: translateY(calc(var(--header-clamp) * -9)) rotate(-45deg);
}
.sidebar {
position: fixed;
left: 0px;
top: 0px;
height: 100vh;
opacity: 0;
transform: translateX(-100%);
transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
z-index: 1000;
}
.sidebar.active {
opacity: 1;
transform: translateX(0%);
}
.menuLinksDiv {
display: none;
}
}
@media (min-width: 921px) {
.burgerMenuDiv {
display: none;
}
.sidebar {
display: none;
}
}
+100
View File
@@ -0,0 +1,100 @@
:root {
--main: #2d2726;
--bg: #FDFDFD;
--border-subtle: #d4d7e1;
--text-main: #191919;
--text-muted: #5e5e5e;
--paddingSite: 20px;
}
@media (prefers-color-scheme: dark) {
:root {
--main: #f0f0f0; /* Flipped to a bright off-white for main accents/highlights */
--bg: #121212; /* Dark background (replacing the near-white #FDFDFD) */
--border-subtle: #2d2d2d; /* Soft, dark border that won't clip harshly against the background */
--text-main: #f5f5f5; /* Light grey/white for high readability */
--text-muted: #a0a0a0; /* Mid-tone grey for secondary text */
--paddingSite: 20px; /* Kept identical for layout consistency */
}
}
/* --- BASE & TYPOGRAPHY --- */
*,
*::before,
*::after {
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
}
b {
font-weight: 600;
}
body {
margin: 0;
width: 100vw;
background: var(--bg);
color: var(--text-main);
overflow-x: hidden;
overscroll-behavior: none;
font-optical-sizing: auto;
}
.bgSection {
position: relative;
width: 100vw;
margin: 100px auto 80px auto;
padding: var(--paddingSite);
max-width: 1800px;
}
@media (max-width: 600px) {
.bgSection {
margin-top: 100px;
}
}
.headerWrapper {
margin: 40px 0;
color: var(--main);
text-align: center;
}
.headerMain {
margin: 0 0 10px 0;
font-weight: 200;
font-size: clamp(34px, 6vw, 3.5rem);
letter-spacing: 12px;
position: relative;
z-index: 4;
}
.headerWrapper > h4 {
margin: 0 0 10px 0;
letter-spacing: 3px;
font-weight: 300;
}
.headerAbt {
margin: 0;
font-weight: 400;
color: var(--main);
font-size: 1.5rem;
}
.tableCutter {
height: 120px;
z-index: 3;
width: 100%;
position: fixed;
top: 0;
background: var(--bg);
}
.tableWraper {
margin: 20px 0 80px 0;
}
.customDisplayEditorTable th {
top: 120px !important;
}
+320
View File
@@ -0,0 +1,320 @@
:root {
--main: #2d2726;
--bg-top-raw: 254 63 24;
--main-box-shadow: rgb(from var(--main) r g b / 0.05);
--accent: #fe3f18;
--accent-hover: #c5e300;
--paddingSite: 40px;
--card-radius: 20px;
--card-bg: #ffffff;
--bg: #FDFDFD;
--card-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
--border-subtle: #d4d7e1;
--text-main: #191919;
--text-muted: #5e5e5e;
}
/* --- BASE & TYPOGRAPHY --- */
*,
*::before,
*::after {
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
}
b {
font-weight: 600;
}
body {
margin: 0;
width: 100vw;
background: var(--bg);
color: var(--text-main);
overflow-x: hidden;
overscroll-behavior: none;
font-optical-sizing: auto;
}
.bgSection {
position: relative;
width: 100vw;
padding: var(--paddingSite);
max-width: 1400px;
margin: auto;
}
.headerAbt {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 8px;
}
.headerAbt h2 {
margin: 0;
font-weight: 400;
color: var(--main);
font-size: 1.5rem;
}
.textInputAbtTitel {
margin: 0;
font-weight: 400;
border-top: none;
border-left: none;
border-right: none;
border-bottom: 1px solid var(--main);
font-size: 1.5rem;
color: #191919;
background: none;
width: max-content;
padding: 4px 8px;
}
/* Sidebar Menu Button Styling */
.header-text-conatiner {
display: flex;
flex-direction: column;
padding: 20px;
gap: 15px;
}
.header-text-conatiner button {
cursor: auto;
font-weight: 600;
transition: all 0.2s ease;
padding: 12px 20px;
border-radius: 100px;
background: var(--accent);
border: 1px solid transparent;
font-size: 15px;
color: #000;
width: 100%;
box-shadow: 0 4px 6px rgba(207, 239, 0, 0.2);
}
.header-text-conatiner button:hover {
background: var(--accent-hover);
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(207, 239, 0, 0.3);
}
.header-text-conatiner button:active {
transform: scale(0.98) translateY(0);
}
.header-text-conatiner label {
font-weight: 400;
color: var(--text-main);
font-size: 0.9rem;
margin-bottom: -5px;
}
.header-text-conatiner input[type="number"] {
padding: 12px 15px;
border-radius: 12px;
border: 1px solid var(--border-subtle);
background: #fff;
font-size: 15px;
outline: none;
transition: all 0.2s ease;
width: 100%;
}
.header-text-conatiner input[type="number"]:focus {
border-color: var(--main);
box-shadow: 0 0 0 3px rgba(40, 102, 110, 0.1);
}
.geraet-table {
background: var(--card-bg);
border: 1px solid var(--border-subtle);
border-radius: 16px;
box-shadow: var(--card-shadow);
min-width: 260px;
overflow: hidden;
transition: all 0.3s ease;
border-collapse: separate;
border-spacing: 0;
}
.geraet-table thead {
background: var(--main);
}
.geraet-table thead th {
display: flex;
justify-content: space-between;
color: #fff;
padding: 14px 20px;
font-weight: 300;
font-size: 1.05rem;
text-align: left;
letter-spacing: 0.5px;
border-bottom: 1px solid var(--border-subtle);
}
.geraet-table thead th i span {
font-size: 0.9rem;
opacity: 0.8;
font-weight: 400;
}
.geraet-table tbody {
display: block;
padding: 10px;
}
/* Custom Scrollbar for tbody */
.geraet-table tbody::-webkit-scrollbar {
width: 6px;
}
.geraet-table tbody::-webkit-scrollbar-track {
background: #f1f5f9;
border-radius: 10px;
}
.geraet-table tbody::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 10px;
}
.geraet-table tbody::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
.turnerin-row {
cursor: auto;
background: #fff;
border-radius: 8px;
margin-bottom: 8px;
transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
display: block;
border: 1px solid transparent;
user-select: none;
-webkit-user-select: none;
-webkit-touch-callout: none;
}
.turnerin-row>td {
padding: 12px 16px;
border: none;
display: block;
width: 100%;
color: var(--text-main);
font-weight: 200;
}
/* Grouping Row Styling */
.group-row {
background: transparent;
margin-bottom: 12px;
}
.group-row>td {
padding: 0;
display: block;
}
.group-header {
padding: 12px 16px;
cursor: auto;
gap: 18px;
border-radius: 10px;
font-weight: 200;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
margin-bottom: 6px;
display: flex;
user-select: none;
-webkit-user-select: none;
-webkit-touch-callout: none;
justify-content: space-between;
align-items: center;
}
.group-inner {
width: 100%;
border-collapse: separate;
border-spacing: 0;
padding-left: 10px;
}
.group-row .group-inner {
display: none;
}
.allGeraeteDiv {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
align-items: flex-start;
gap: 8px;
margin-top: 24px;
margin-bottom: 36px;
}
.buttonsDiv {
display: flex;
flex-direction: column;
gap: 12px;
justify-content: flex-start;
margin-bottom: 20px;
position: fixed;
bottom: 10px;
right: 20px;
}
.buttonsDiv > button {
background: var(--main);
border: 1px solid #fff;
color: #ffffff;
padding: 10px 20px;
border-radius: 10px;
transition: transform 0.3s ease;
}
.buttonsDiv > select {
background: #fff;
border: 1px solid var(--main);
color: var(--main);
padding: 10px 20px;
border-radius: 10px;
}
.buttonsDiv > button:hover {
transform: scale(1.02);
}
.buttonsDiv > button:active {
transform: scale(0.98);
}
.filtered-out {
opacity: 0.5;
background: #4d4d4d22 !important;
color: #4d4d4d !important;
}
.filtered-out-border {
border: 1px solid #4d4d4d !important;
}
.timeSpan {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 4px 8px;
background: #f1f5f9;
border-radius: 8px;
font-size: 0.9rem;
}
.stickyDivHeader {
position: sticky;
top: 0;
background: var(--bg);
padding: 10px 0;
z-index: 10;
}