CV-Studio

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 v4 | Modern & Professional</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;800&family=Montserrat:wght@400;500;600;700;800&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 & RESET
─────────────────────────────────────────────── */
:root {
  --bg-app: #0b1120;
  --bg-panel: #131d2f;
  --bg-surface: #1a2a44;
  --bg-input: #0b1120;
  --border: #2a3f5f;
  --border-light: #3a5580;
  --accent: #2563eb; /* Modern Blue */
  --accent-hover: #1d4ed8;
  --accent-glow: rgba(37, 99, 235, 0.25);
  --accent-dim: rgba(37, 99, 235, 0.10);
  --text-main: #f0f4fa;
  --text-muted: #8aa3c9;
  --text-dim: #4a6a8a;
  --success: #34d399;
  --warning: #fbbf24;
  --danger: #f87171;
  --radius: 10px;
  --shadow: 0 20px 60px -12px rgba(0, 0, 0, 0.6);
  --transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --sidebar-width: 20vw;
  --sidebar-min: 240px;
  --sidebar-max: 45vw;
  --zoom: 1;
  --photo-size: 90px;
}
* { 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;
  user-select: none;
}
.material-symbols-outlined {
  font-size: 20px;
  vertical-align: middle;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0;
}

/* ───────────────────────────────────────────────
SCROLLBAR
─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background:...