/* foxygit — structure only, no colors. All colors come from a theme file in themes/*.css via CSS custom properties (--bg, --fg, --dim, --acc, --line, --surface, --pre-bg, --add, --del, --hunk, --font-ui). */ * { box-sizing: border-box; } body { margin: 0; background: var(--bg); color: var(--fg); font: 14px/1.5 var(--font-ui); -webkit-font-smoothing: antialiased; } a { color: var(--acc); text-decoration: none; } a:hover { text-decoration: underline; } /* code/hashes/diffs always render monospace, regardless of --font-ui */ pre, code, .mono, .hash { font-family: ui-monospace, "JetBrains Mono", Menlo, Consolas, monospace; } /* middle, not text-bottom: table cells set their own line-height, and text-bottom pushed icons visibly below the row's text baseline. */ .icon { fill: currentColor; vertical-align: middle; flex: none; } /* the shared centred column — header, tabs and main all line up on it */ .inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; width: 100%; } /* ---------------------------------------------------------------- header */ header { border-bottom: 1px solid var(--line); background: var(--surface); padding: 12px 0; } header .inner { display: flex; align-items: center; flex-wrap: wrap; gap: 4px 10px; } header .brand { color: var(--fg); font-weight: 600; font-size: 16px; display: inline-flex; align-items: center; gap: 8px; } header .brand .icon { color: var(--dim); } header .brand:hover { text-decoration: none; } header .path { color: var(--dim); display: inline-flex; align-items: center; gap: 6px; font-size: 16px; } header .path a { color: var(--fg); font-weight: 600; } header .spacer { flex: 1; } /* also used on a