feat: add Misch & Friends companion app
All checks were successful
Build & Push Friends Image to Gitea Registry / build-and-push (push) Successful in 16s

This commit is contained in:
Kroonk
2026-05-22 17:32:24 +02:00
commit 7afca6561f
13 changed files with 2203 additions and 0 deletions

408
public/styles.css Normal file
View File

@@ -0,0 +1,408 @@
*,
*::before,
*::after {
box-sizing: border-box;
}
* {
margin: 0;
}
[hidden] {
display: none !important;
}
:root {
color-scheme: dark;
--bg: #070914;
--surface: #111624;
--surface-2: #171d2d;
--surface-hover: #1c2435;
--border: rgba(226, 232, 240, 0.1);
--border-strong: rgba(226, 232, 240, 0.18);
--text: #eef2ff;
--muted: #9aa6bd;
--dim: #647085;
--ok: #34d399;
--warn: #fbbf24;
--down: #fb7185;
--cyan: #67e8f9;
--radius: 8px;
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
html {
min-height: 100%;
font-size: 16px;
background: var(--bg);
}
body {
min-height: 100vh;
color: var(--text);
background:
linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(8, 13, 27, 0.98)),
repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 120px);
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
button,
input,
select,
textarea {
font: inherit;
}
button,
input,
select,
textarea {
border: 0;
}
.shell {
width: min(1160px, calc(100% - 32px));
margin-inline: auto;
}
.hero {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
gap: 16px;
align-items: start;
padding: 32px 0 22px;
}
.brand {
display: flex;
align-items: center;
gap: 16px;
min-width: 0;
}
.brand-mark {
width: 72px;
height: 72px;
flex: 0 0 auto;
border: 1px solid rgba(255, 255, 255, 0.16);
border-radius: var(--radius);
object-fit: cover;
box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}
.brand h1 {
display: inline-block;
margin-top: 4px;
background: linear-gradient(135deg, #38bdf8 0%, #c084fc 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: clamp(2rem, 6vw, 4.4rem);
line-height: 0.95;
letter-spacing: 0;
}
.eyebrow,
.section-kicker {
color: var(--cyan);
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
}
.subtitle {
max-width: 560px;
margin-top: 10px;
color: var(--muted);
font-size: clamp(0.95rem, 2vw, 1.05rem);
}
.hero-meta {
display: grid;
grid-template-columns: repeat(2, minmax(92px, 1fr));
gap: 10px;
margin-top: 12px;
}
.metric {
min-width: 92px;
padding: 13px 14px;
background: rgba(17, 22, 36, 0.78);
border: 1px solid var(--border);
border-radius: var(--radius);
}
.metric-value {
display: block;
color: #fff;
font-size: 0.96rem;
font-weight: 800;
line-height: 1.1;
overflow-wrap: anywhere;
}
.metric-label {
display: block;
margin-top: 8px;
color: var(--muted);
font-size: 0.68rem;
font-weight: 700;
letter-spacing: 0.16em;
text-transform: uppercase;
}
.control-bar,
.composer,
.review,
.log {
border: 1px solid var(--border);
border-radius: var(--radius);
background: rgba(17, 22, 36, 0.74);
box-shadow: 0 18px 52px rgba(0, 0, 0, 0.25);
backdrop-filter: blur(14px);
}
.control-bar {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
margin-bottom: 12px;
padding: 12px;
}
.composer,
.review {
padding: 18px;
}
.composer textarea {
margin-top: 10px;
resize: vertical;
}
.review {
margin-top: 16px;
}
.segments {
display: inline-flex;
gap: 4px;
padding: 4px;
border: 1px solid var(--border);
border-radius: var(--radius);
background: rgba(7, 9, 20, 0.45);
}
.segment,
button {
min-height: 38px;
padding: 0 14px;
color: var(--text);
background: transparent;
border: 1px solid transparent;
border-radius: var(--radius);
cursor: pointer;
}
.segment {
color: var(--muted);
font-size: 0.9rem;
font-weight: 700;
}
.segment.is-active,
.segment.active,
.primary {
color: #062027;
background: var(--cyan);
border-color: transparent;
font-weight: 800;
box-shadow: 0 10px 28px rgba(103, 232, 249, 0.16);
}
.icon-button,
.ghost,
.small {
color: var(--text);
background: rgba(17, 22, 36, 0.82);
border: 1px solid var(--border);
}
button:hover {
background: rgba(103, 232, 249, 0.1);
border-color: rgba(103, 232, 249, 0.32);
}
.voice.listening {
color: #062027;
background: var(--cyan);
}
.actions,
.reviewHead,
.panelTitle {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
}
.actions {
margin-top: 14px;
}
.input-label,
label {
display: grid;
gap: 8px;
color: var(--muted);
font-size: 0.86rem;
}
textarea,
input,
select {
width: 100%;
min-height: 42px;
padding: 11px 12px;
color: var(--text);
background: rgba(7, 9, 20, 0.58);
border: 1px solid var(--border);
border-radius: var(--radius);
outline: none;
}
textarea:focus,
input:focus,
select:focus {
border-color: rgba(103, 232, 249, 0.62);
box-shadow: 0 0 0 3px rgba(103, 232, 249, 0.1);
}
textarea::placeholder,
input::placeholder {
color: var(--dim);
}
.grid,
.cards {
display: grid;
gap: 12px;
}
.grid {
grid-template-columns: minmax(0, 1.5fr) minmax(180px, 0.7fr);
margin: 18px 0 12px;
}
.cards {
grid-template-columns: repeat(2, minmax(0, 1fr));
margin: 12px 0;
}
.panel {
padding: 14px;
background: rgba(7, 9, 20, 0.28);
border: 1px solid var(--border);
border-radius: var(--radius);
}
.panel > * + * {
margin-top: 12px;
}
.toggle {
display: inline-flex;
grid-template-columns: auto auto;
align-items: center;
gap: 8px;
color: var(--text);
}
.toggle input {
width: 18px;
min-height: 18px;
height: 18px;
accent-color: var(--cyan);
}
.small {
min-height: 32px;
padding: 0 10px;
}
.danger {
color: #fecdd3;
}
.reminder {
display: grid;
grid-template-columns: 90px minmax(0, 1fr) 170px auto;
gap: 10px;
align-items: start;
padding: 12px 0;
border-top: 1px solid var(--border);
}
.reminder textarea {
grid-column: 2 / 4;
}
.log {
margin-top: 16px;
min-height: 46px;
padding: 12px 14px;
color: var(--muted);
}
.log:empty {
display: none;
}
@media (max-width: 780px) {
.hero,
.control-bar,
.actions,
.reviewHead {
grid-template-columns: 1fr;
align-items: stretch;
}
.hero,
.control-bar,
.actions,
.reviewHead {
flex-direction: column;
}
.brand {
align-items: flex-start;
}
.brand-mark {
width: 56px;
height: 56px;
}
.hero-meta,
.grid,
.cards,
.reminder {
grid-template-columns: 1fr;
}
.reminder textarea {
grid-column: auto;
}
.segments {
width: 100%;
}
.segment {
flex: 1;
}
}