Mail-Graveyard/frontend-js/dist/style.css
2026-07-13 15:38:18 +02:00

1082 lines
23 KiB
CSS

/* Outlook 2013 Look — flach, hellblau, Segoe UI, Dreispalter.
Farben nach dem 2013er Flat-Design: Kopfband Outlook-Blau, helle Panes,
dezente Rahmen, blaue Auswahlzeile. */
:root {
--ol-blue: #005a9e; /* Outlook-2013 Kopfband, etwas dunkler */
--ol-blue-dark: #004578;
--ol-bg: #f3f3f3; /* Fensterhintergrund */
--ol-pane: #ffffff;
--ol-tree: #f0f0f0; /* linke Spalte etwas grau */
--ol-border: #d9d9d9;
--ol-sel: #cde6f7; /* markierte Zeile */
--ol-sel-bd: #92c0e0;
--ol-text: #262626;
--ol-muted: #6b6b6b;
--ol-unread: #003399; /* ungelesen = kraeftiges Blau, fett */
}
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body.ol2013 {
font-family: "Segoe UI", "Segoe UI Web", Tahoma, sans-serif;
font-size: 13px;
color: var(--ol-text);
background: var(--ol-bg);
display: flex;
flex-direction: column;
}
.login-body {
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #f6f8fb 0%, #e8eef5 100%);
}
.login-card {
width: min(380px, calc(100vw - 32px));
background: #fff;
border: 1px solid var(--ol-border);
box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
}
.login-brand {
display: flex;
align-items: center;
gap: 12px;
padding: 16px 18px;
background: var(--ol-blue);
color: #fff;
font-size: 16px;
}
.login-form {
display: grid;
gap: 12px;
padding: 18px;
}
.login-error {
padding: 8px 10px;
border: 1px solid #f3b5b8;
}
/* Ribbon / Kopfband */
.ribbon {
background: #2f343a;
color: #fff;
display: flex;
align-items: center;
gap: 12px;
padding: 0 16px 0 0;
height: 44px;
flex: 0 0 auto;
position: relative;
z-index: 20;
}
.ribbon-spacer { margin-left: auto; }
.ribbon-user {
color: #fff;
max-width: 220px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-weight: 600;
}
.ribbon-icon {
width: 32px;
height: 32px;
color: #fff;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
border: 1px solid rgba(255, 255, 255, .35);
font-size: 17px;
line-height: 1;
}
.ribbon-icon:hover,
.ribbon-icon.active {
background: #454b53;
}
.ribbon-tabs { display: flex; gap: 2px; height: 100%; }
.app-menu-button {
width: 54px;
height: 44px;
border: 0;
background: #24292f;
color: #fff;
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.app-menu-button:hover,
.app-menu-button[aria-expanded="true"] { background: #454b53; }
.tab {
display: flex; align-items: center;
gap: 8px;
padding: 0 16px; height: 100%;
color: #eaf3fb; text-decoration: none;
border-bottom: 3px solid transparent;
background: transparent;
border-left: 0;
border-right: 0;
border-top: 0;
font: inherit;
cursor: pointer;
}
.tab:hover { background: #454b53; color: #fff; }
.tab.active { background: #fff; color: #2f343a; border-bottom-color: #fff; }
.tab.app-tab {
font-weight: 700;
}
.ribbon-menu {
position: relative;
height: 100%;
}
.ribbon-menu-button::after {
content: "";
width: 0;
height: 0;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 5px solid currentColor;
}
.ribbon-dropdown {
position: absolute;
top: 44px;
left: 0;
min-width: 238px;
background: #fff;
color: var(--ol-text);
border: 1px solid var(--ol-border);
box-shadow: 0 7px 18px rgba(0, 0, 0, .18);
display: none;
z-index: 25;
}
.ribbon-menu.open .ribbon-dropdown { display: block; }
.ribbon-dropdown-item {
display: block;
padding: 9px 13px;
color: var(--ol-text);
text-decoration: none;
border-left: 3px solid transparent;
}
.ribbon-dropdown-item:hover {
background: #eef6fd;
}
.ribbon-dropdown-item.active {
color: var(--ol-blue-dark);
background: var(--ol-sel);
border-left-color: var(--ol-blue);
font-weight: 600;
}
.mail-actionbar {
height: 38px;
flex: 0 0 auto;
background: var(--ol-blue);
color: #f3f5f7;
display: flex;
align-items: center;
gap: 8px;
padding: 0 10px;
border-bottom: 1px solid var(--ol-blue-dark);
box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .04);
overflow: visible;
white-space: nowrap;
}
.action-search {
width: min(340px, 26vw);
min-width: 210px;
height: 30px;
display: inline-flex;
align-items: center;
gap: 8px;
padding: 0 10px;
color: #dcecf8;
background: #0f6fb8;
border: 1px solid #5aa1d8;
}
.action-search input {
min-width: 0;
width: 100%;
border: 0;
outline: 0;
color: #fff;
background: transparent;
font: inherit;
}
.action-search input::placeholder { color: #d7e8f5; }
.action-btn {
height: 30px;
display: inline-flex;
align-items: center;
gap: 8px;
padding: 0 10px;
border: 1px solid transparent;
color: #f6f8fb;
background: transparent;
font: inherit;
cursor: pointer;
}
.action-btn:hover {
background: var(--ol-blue-dark);
border-color: #4f94ca;
}
.action-btn.primary {
background: #f28c22;
border-color: #f28c22;
color: #fff;
font-weight: 600;
}
.action-btn.primary:hover {
background: #ff9d34;
border-color: #ff9d34;
}
.action-btn.muted { color: #d7e8f5; }
.action-btn:disabled {
cursor: default;
opacity: .58;
}
.action-btn:disabled:hover {
background: transparent;
border-color: transparent;
}
.mail-context-menu {
position: fixed;
z-index: 80;
min-width: 220px;
display: none;
padding: 6px;
color: var(--ol-text);
background: #fff;
border: 1px solid var(--ol-border-dark);
box-shadow: 0 12px 34px rgba(20, 25, 35, .22);
}
.mail-context-menu.open { display: block; }
.mail-context-menu button {
width: 100%;
height: 30px;
display: flex;
align-items: center;
gap: 9px;
padding: 0 10px;
border: 0;
color: var(--ol-text);
background: transparent;
font: inherit;
text-align: left;
cursor: pointer;
}
.mail-context-menu button:hover {
color: #fff;
background: var(--ol-blue);
}
.mail-context-menu button span {
width: 18px;
text-align: center;
}
.mail-context-menu .sep {
height: 1px;
margin: 5px 4px;
background: var(--ol-border);
}
.msg-row.context-active {
outline: 1px solid var(--ol-blue);
outline-offset: -1px;
}
.action-menu {
position: relative;
height: 30px;
flex: 0 0 auto;
}
.action-menu-button::after {
content: "";
width: 0;
height: 0;
margin-left: 2px;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 5px solid currentColor;
}
.action-menu.open .action-menu-button {
background: var(--ol-blue-dark);
border-color: #4f94ca;
}
.action-dropdown {
position: absolute;
top: 34px;
left: 0;
min-width: 190px;
display: none;
padding: 4px 0;
background: #fff;
color: var(--ol-text);
border: 1px solid var(--ol-border);
box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
z-index: 45;
}
.action-menu.open .action-dropdown { display: block; }
.action-dropdown-item {
width: 100%;
display: block;
padding: 8px 12px;
border: 0;
background: transparent;
color: var(--ol-text);
font: inherit;
text-align: left;
cursor: pointer;
}
.action-dropdown-item:hover {
background: #eef6fd;
color: var(--ol-blue-dark);
}
.action-separator {
width: 1px;
height: 26px;
background: rgba(255, 255, 255, .32);
margin: 0 4px;
flex: 0 0 auto;
}
.mail-logo {
position: relative;
width: 17px;
height: 12px;
border: 2px solid currentColor;
border-radius: 2px;
display: inline-block;
flex: 0 0 auto;
}
.mail-logo::before,
.mail-logo::after {
content: "";
position: absolute;
top: 1px;
width: 10px;
height: 2px;
background: currentColor;
}
.mail-logo::before {
left: -1px;
transform: rotate(32deg);
transform-origin: left center;
}
.mail-logo::after {
right: -1px;
transform: rotate(-32deg);
transform-origin: right center;
}
.backstage-menu {
position: fixed;
top: 44px;
left: 0;
bottom: 22px;
width: 216px;
z-index: 18;
background: var(--ol-blue);
color: #fff;
padding: 10px 0;
transform: translateX(-100%);
transition: transform .16s ease-out;
box-shadow: 8px 0 18px rgba(0, 0, 0, .16);
}
.backstage-open .backstage-menu { transform: translateX(0); }
.backstage-item {
display: block;
padding: 11px 22px;
color: #fff;
text-decoration: none;
border-left: 3px solid transparent;
}
.backstage-item:hover { background: var(--ol-blue-dark); }
.backstage-item.active {
background: #fff;
color: var(--ol-blue);
border-left-color: #fff;
}
.backstage-item.transfer-sub {
padding-left: 38px;
font-size: 12px;
}
.backstage-shade {
position: fixed;
inset: 44px 0 22px 0;
z-index: 17;
border: 0;
background: transparent;
display: none;
cursor: default;
}
.backstage-open .backstage-shade { display: block; }
/* Viewer */
.three-pane,
.four-pane {
flex: 1 1 auto;
display: grid;
min-height: 0; /* erlaubt Scrollen in den Panes */
}
.three-pane { grid-template-columns: 220px 6px 340px 6px minmax(300px, 1fr); }
.four-pane { grid-template-columns: 220px 6px 340px 6px minmax(280px, 1fr) 6px minmax(280px, 1fr); }
.pane {
border-right: 1px solid var(--ol-border);
background: var(--ol-pane);
overflow-y: auto;
min-height: 0;
}
.pane-resizer {
background: #f7f7f7;
border-right: 1px solid var(--ol-border);
cursor: col-resize;
min-height: 0;
}
.pane-resizer:hover,
.pane-resizer.dragging { background: var(--ol-sel-bd); }
body.resizing { cursor: col-resize; user-select: none; }
.pane-tree { background: var(--ol-tree); }
.pane-target { border-right: 0; }
.pane-head {
position: sticky; top: 0;
background: #eef3f8;
border-bottom: 1px solid var(--ol-border);
padding: 6px 12px;
font-weight: 600; color: var(--ol-muted);
text-transform: none;
}
.target-head {
display: grid;
grid-template-columns: auto minmax(0, 1fr) auto;
align-items: center;
gap: 10px;
}
.mode-head {
display: grid;
grid-template-columns: auto minmax(0, 1fr) auto;
align-items: center;
gap: 10px;
}
.mode-label {
min-width: 44px;
color: var(--ol-muted);
font-weight: 700;
}
.target-select-form { margin: 0; min-width: 0; }
.target-select {
width: 100%;
height: 24px;
padding: 2px 6px;
color: var(--ol-text);
background: #fff;
}
.archive-head {
display: grid;
grid-template-columns: auto minmax(0, 1fr);
align-items: center;
gap: 8px;
}
.archive-select-form {
margin: 0;
min-width: 0;
}
.archive-select {
width: 100%;
height: 24px;
padding: 2px 6px;
color: var(--ol-text);
background: #fff;
}
.searchbar {
position: sticky; top: 30px; z-index: 2;
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
gap: 6px;
padding: 8px;
background: #fff;
border-bottom: 1px solid var(--ol-border);
}
.search-input { min-width: 0; }
.search-btn { padding-left: 10px; padding-right: 10px; }
/* Ordnerbaum */
.tree-node { padding: 4px 12px 4px 24px; cursor: pointer; white-space: nowrap; }
a.tree-node { display: block; color: inherit; text-decoration: none; }
.tree-node.folder {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
align-items: center;
gap: 8px;
}
.tree-label {
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
}
.tree-count {
color: var(--ol-muted);
font-size: 11px;
}
.tree-count:empty { display: none; }
.tree-node.account { padding-left: 12px; font-weight: 600; color: var(--ol-blue-dark); }
.tree-node:hover { background: #e5eff8; }
.tree-node.active { background: var(--ol-sel); box-shadow: inset 2px 0 0 var(--ol-blue); }
/* Nachrichtenliste */
.msg-row {
padding: 8px 12px;
border-bottom: 1px solid #ececec;
cursor: pointer;
display: flex; flex-direction: column; gap: 2px;
color: var(--ol-text);
text-decoration: none;
}
.msg-row:visited { color: var(--ol-text); }
.msg-row:hover { background: #eef6fd; }
.msg-row.dragging { opacity: .55; }
.msg-row.active { background: var(--ol-sel); border-left: 3px solid var(--ol-blue); padding-left: 9px; }
.msg-from { font-weight: 600; }
.msg-subject { color: var(--ol-text); }
.msg-date { color: var(--ol-muted); font-size: 11px; }
.msg-row.unread .msg-from,
.msg-row.unread .msg-subject { color: var(--ol-unread); font-weight: 700; }
/* Lesebereich */
.read-body { padding: 16px 20px; }
.read-toolbar {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
}
.read-head { border-bottom: 1px solid var(--ol-border); padding-bottom: 10px; margin-bottom: 12px; }
.read-head.with-popout { position: relative; padding-right: 34px; }
.read-subject { font-size: 17px; font-weight: 600; margin: 0 0 6px; }
.read-meta { color: var(--ol-muted); font-size: 12px; }
.read-pre {
white-space: pre-wrap;
word-break: break-word;
font: 12px Consolas, "Courier New", monospace;
line-height: 1.45;
margin: 0;
}
.preview-popout {
justify-self: end;
width: 26px;
height: 24px;
border: 1px solid var(--ol-border);
background: #fff;
color: var(--ol-blue-dark);
cursor: pointer;
font-size: 15px;
line-height: 1;
}
.preview-popout:hover {
background: #eef6fd;
border-color: var(--ol-blue);
}
.preview-popout.inline {
position: absolute;
top: 0;
right: 0;
}
.mail-modal {
position: fixed;
inset: 0;
z-index: 60;
display: none;
padding: 28px;
background: rgba(0, 0, 0, .38);
}
.mail-modal.open { display: flex; }
.mail-modalbox {
width: min(1180px, 100%);
height: min(860px, 100%);
margin: auto;
display: flex;
flex-direction: column;
overflow: hidden;
background: #fff;
border: 1px solid var(--ol-border);
box-shadow: 0 20px 70px rgba(0, 0, 0, .32);
}
.mail-modalhead {
display: flex;
align-items: center;
gap: 12px;
padding: 10px 14px;
border-bottom: 1px solid var(--ol-border);
background: #eef3f8;
}
.mail-modalhead h2 {
flex: 1;
min-width: 0;
margin: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 17px;
}
.mail-modalclose {
width: 30px;
height: 28px;
border: 1px solid var(--ol-border);
background: #fff;
cursor: pointer;
font-size: 20px;
line-height: 1;
}
.mail-modalbody {
flex: 1;
min-height: 0;
overflow: auto;
padding: 20px 24px;
}
.mail-compose-modal {
position: fixed;
inset: 0;
z-index: 70;
display: none;
align-items: center;
justify-content: center;
padding: 24px;
background: rgba(0, 0, 0, .32);
}
.mail-compose-modal.open { display: flex; }
.mail-compose-box {
width: min(760px, calc(100vw - 48px));
max-height: calc(100vh - 48px);
display: flex;
flex-direction: column;
background: #fff;
border: 1px solid var(--ol-border);
box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
}
.mail-compose-head {
height: 42px;
display: flex;
align-items: center;
gap: 12px;
padding: 0 12px 0 16px;
color: #fff;
background: #2f343a;
}
.mail-compose-head h2 {
margin: 0;
font-size: 15px;
font-weight: 600;
}
.mail-compose-close {
margin-left: auto;
width: 30px;
height: 30px;
border: 0;
color: #fff;
background: transparent;
font-size: 22px;
line-height: 1;
cursor: pointer;
}
.mail-compose-close:hover { background: #454b53; }
.mail-compose-fields {
display: grid;
gap: 10px;
padding: 14px 16px;
overflow: auto;
}
.mail-compose-fields label {
display: grid;
grid-template-columns: 72px minmax(0, 1fr);
align-items: start;
gap: 10px;
color: var(--ol-muted);
}
.mail-compose-fields input,
.mail-compose-fields textarea {
width: 100%;
border: 1px solid #b8c4d0;
padding: 7px 8px;
color: var(--ol-text);
background: #fff;
font: inherit;
}
.mail-compose-fields textarea {
min-height: 260px;
resize: vertical;
font-family: Consolas, "Courier New", monospace;
}
.mail-compose-fields input:focus,
.mail-compose-fields textarea:focus {
outline: none;
border-color: var(--ol-blue);
}
.mail-compose-status {
min-height: 20px;
padding: 0 16px 8px 98px;
color: var(--ol-muted);
}
.mail-compose-actions {
display: flex;
justify-content: flex-end;
gap: 8px;
padding: 12px 16px;
border-top: 1px solid var(--ol-border);
background: #f7f9fb;
}
.ef-empty { color: var(--ol-muted); padding: 24px; }
.audit-note { padding: 10px 16px; border-bottom: 1px solid var(--ol-border); font-size: 12px; }
.drop-zone {
margin: 10px 16px 0;
padding: 12px;
border: 1px dashed var(--ol-sel-bd);
background: #f6fbff;
color: var(--ol-muted);
text-align: center;
}
.drop-zone.drag-over {
background: var(--ol-sel);
color: var(--ol-text);
border-color: var(--ol-blue);
}
/* Buttons / Formulare (flach, 2013er) */
.btn {
background: var(--ol-blue); color: #fff; border: 0;
padding: 6px 14px; cursor: pointer; font-size: 13px;
}
.btn:hover { background: var(--ol-blue-dark); }
.btn.secondary { background: #e1e1e1; color: var(--ol-text); border: 1px solid var(--ol-border); }
.btn.secondary:hover { background: #d5d5d5; }
.btn.compact { padding: 3px 9px; }
.btn.mode-toggle {
width: 26px;
height: 26px;
padding: 0;
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 15px;
line-height: 1;
}
.swap-icon {
display: block;
transform: translateY(-1px);
}
.input, select, textarea {
border: 1px solid #abadb3; padding: 5px 7px; font: inherit; width: 100%;
background: #fff;
}
.input:focus { border-color: var(--ol-blue); outline: none; }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px; }
.label { display: block; font-size: 12px; color: var(--ol-muted); margin-bottom: 3px; }
/* Konten-Verwaltung */
.accounts-page {
flex: 1 1 auto;
min-height: 0;
overflow: auto;
background: #fff;
}
.notice {
padding: 8px 16px;
border-bottom: 1px solid var(--ol-border);
background: #f8fbfd;
}
.account-layout {
display: grid;
grid-template-columns: minmax(520px, 1fr) minmax(460px, 560px);
min-height: 100%;
}
.account-list,
.account-form-panel {
min-width: 0;
border-right: 1px solid var(--ol-border);
background: #fff;
}
.account-form-panel { border-right: 0; }
.archive-page {
background: #fff;
}
.transfer-page {
background: #fff;
}
.email-box-page {
background: #fff;
}
.email-box-view {
grid-template-columns: 220px 6px 340px 6px minmax(300px, 1fr);
}
.email-box-target-view {
grid-template-columns: minmax(300px, 1fr) 6px minmax(340px, 1fr) 6px 260px;
}
.email-box-target-view .pane-tree {
border-right: 0;
border-left: 1px solid var(--ol-border);
}
.archive-page-layout {
display: grid;
grid-template-columns: minmax(520px, 1fr) minmax(360px, 460px);
min-height: 100%;
}
.transfer-layout {
display: grid;
grid-template-columns: minmax(380px, 1fr) minmax(380px, 1fr);
min-height: 100%;
}
.transfer-workbench {
flex: 1 1 auto;
display: grid;
grid-template-columns: 310px 6px minmax(300px, 1fr) 6px minmax(420px, 1.15fr) 6px minmax(300px, 1fr) 6px 310px;
min-height: 0;
}
.transfer-workbench .pane:last-child {
border-right: 0;
}
.archive-list-panel,
.archive-form-panel,
.transfer-panel {
min-width: 0;
border-right: 1px solid var(--ol-border);
background: #fff;
}
.archive-form-panel,
.transfer-panel:last-child {
border-right: 0;
}
.account-table {
width: 100%;
border-collapse: collapse;
table-layout: fixed;
}
.account-table th,
.account-table td {
padding: 8px 10px;
border-bottom: 1px solid #ececec;
text-align: left;
vertical-align: middle;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.account-table .actions-col,
.account-table .row-actions {
width: 204px;
min-width: 204px;
overflow: visible;
}
.user-table .actions-col,
.user-table .row-actions {
width: 292px;
min-width: 292px;
}
.account-table th {
color: var(--ol-muted);
font-weight: 600;
background: #fafafa;
}
.account-table tr.selected { background: var(--ol-sel); }
.account-table a { color: var(--ol-blue-dark); font-weight: 600; text-decoration: none; }
.row-actions {
display: flex;
gap: 4px;
justify-content: flex-end;
white-space: nowrap;
}
.row-actions form { margin: 0; }
.account-form {
padding: 14px;
}
.form-section {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
gap: 14px;
align-items: end;
margin-bottom: 14px;
}
.form-columns {
display: grid;
grid-template-columns: 1fr;
gap: 14px;
}
.account-form fieldset {
border: 1px solid var(--ol-border);
padding: 12px;
margin: 0;
min-width: 0;
}
.account-form legend {
color: var(--ol-blue-dark);
font-weight: 700;
padding: 0 4px;
}
.field-row {
display: grid;
grid-template-columns: 92px minmax(0, 1fr);
gap: 10px;
}
.check-row {
display: flex;
gap: 7px;
align-items: center;
color: var(--ol-text);
min-height: 28px;
}
.check-row input { width: auto; }
.form-actions {
display: flex;
gap: 8px;
margin-top: 14px;
}
.form-actions a { text-decoration: none; }
.btn.danger { color: #8a1f11; }
.form-hint {
color: var(--ol-muted);
margin: 0 0 10px;
line-height: 1.35;
}
.archive-table {
width: 100%;
border-collapse: collapse;
table-layout: fixed;
}
.archive-table th,
.archive-table td {
padding: 7px 8px;
border-bottom: 1px solid #ececec;
text-align: left;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.archive-table th {
color: var(--ol-muted);
font-weight: 600;
background: #fafafa;
}
.archive-action {
width: 246px;
text-align: right;
overflow: visible;
display: flex;
gap: 4px;
justify-content: flex-end;
}
.archive-action form { margin: 0; }
.archive-create-panel {
display: grid;
gap: 12px;
padding: 14px;
border-bottom: 1px solid var(--ol-border);
}
.archive-create-panel .btn {
justify-self: start;
}
.archive-help {
padding: 14px;
color: var(--ol-muted);
line-height: 1.45;
}
.archive-help p {
margin: 8px 0 0;
}
.archive-help-title {
color: var(--ol-blue-dark);
font-weight: 700;
}
.transfer-picker {
padding: 14px;
border-bottom: 1px solid var(--ol-border);
}
.email-box-list {
padding: 8px 0;
}
.email-box-row {
padding: 8px 14px;
border-bottom: 1px solid #ececec;
color: var(--ol-text);
}
.email-box-row:hover {
background: #eef6fd;
}
.email-box-detail {
padding: 18px;
color: var(--ol-muted);
}
.muted { color: var(--ol-muted); }
.start-page {
flex: 1 1 auto;
display: grid;
place-items: center;
padding: 28px;
background: #fff;
}
.welcome-panel {
width: min(760px, 100%);
border: 1px solid var(--ol-border);
background: #fff;
padding: 32px;
box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}
.welcome-kicker {
color: var(--ol-blue-dark);
font-weight: 700;
margin-bottom: 8px;
}
.welcome-panel h1 {
margin: 0 0 12px;
font-size: 30px;
font-weight: 600;
}
.welcome-panel p {
margin: 0;
color: var(--ol-muted);
font-size: 15px;
line-height: 1.5;
}
.welcome-actions {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 22px;
}
/* Statusleiste */
.statusbar {
flex: 0 0 auto;
background: var(--ol-blue); color: #fff;
padding: 4px 16px; font-size: 12px;
}
.ok { color: #107c10; }
.bad { color: #d13438; }
@media (max-width: 1180px) {
.three-pane {
grid-template-columns: 200px 6px 320px 6px minmax(300px, 1fr);
}
.four-pane {
grid-template-columns: 200px 6px 320px 6px minmax(280px, 1fr) 6px minmax(280px, 1fr);
}
}
@media (max-width: 820px) {
.four-pane,
.three-pane {
grid-template-columns: 1fr;
overflow-y: auto;
}
.pane {
min-height: 220px;
border-right: 0;
border-bottom: 1px solid var(--ol-border);
}
.pane-resizer { display: none; }
.pane-target { grid-column: auto; }
.searchbar { top: 30px; }
.account-layout,
.archive-page-layout,
.transfer-layout,
.form-columns,
.form-section {
grid-template-columns: 1fr;
}
.account-table { min-width: 760px; }
}