CV-Editor 1.00

by velo_ninja

HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Premium CV Editor Suite | Dimitri Ackermann</title>
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:opsz,[email protected],400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet" />
<style>
:root {
  --bg-app: #0f172a;
  --bg-panel: #1e293b;
  --bg-surface: #334155;
  --border: #475569;
  --accent: #c9874a; /* Warmes Bronze/Amber */
  --accent-hover: #b0753e;
  --accent-glow: rgba(201, 135, 74, 0.25);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --radius: 8px;
  --shadow: 0 10px 15px -3px rgba(0,0,0,0.3), 0 4px 6px -4px rgba(0,0,0,0.3);
  --zoom: 1;
}

* { box-sizing: border-box; margin: 0; padding: 0; outline: none; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg-app); color: var(--text-main); height: 100vh; display: flex; flex-direction: column; overflow: hidden; }
.material-symbols-outlined { font-size: 20px; vertical-align: middle; }

/* ── TOP BAR ── */
.topbar {
  height: 60px; background: var(--bg-panel); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; padding: 0 24px;
  flex-shrink: 0; z-index: 50;
}
.sys-status {
  font-family: 'Inter', monospace; font-size: 0.75rem; color: var(--accent);
  display: flex; align-items: center; gap: 12px; letter-spacing: 0.5px; font-weight: 600;
}
.sys-status .dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; box-shadow: 0 0 8px var(--success); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6;...