Files
Faset_Engine/docs/studies/map/style.css
T

42 lines
3.1 KiB
CSS

:root { color-scheme: dark; --bg:#15181c; --surface:#1c2025; --text:#e2e5e8; --muted:#b2bac3; --subtle:#929da9; --line:#363f49; --accent:#b3d5c6; --selected:#273c35; font-family:Inter,system-ui,sans-serif; font-size:14px; line-height:1.65; background:var(--bg); color:var(--text); }
* { box-sizing:border-box; }
body { margin:0; }
h1,h2,h3,p { margin:0; }
h1 { font-size:24px; line-height:1.3; max-width:800px; font-weight:650; }
h2 { font-size:20px; line-height:1.4; font-weight:600; }
h3 { font-size:15px; line-height:1.4; font-weight:600; }
button { font:inherit; cursor:pointer; }
button:focus-visible,a:focus-visible,summary:focus-visible { outline:2px solid var(--accent); outline-offset:3px; }
.button,.pill { border:1px solid var(--line); color:var(--text); background:var(--surface); line-height:1.5; border-radius:5px; padding:7px 11px; display:inline-block; text-align:left; }
.button:hover,.pill:hover { border-color:var(--muted); }
.pill { font-size:12px; padding:5px 10px; }
.pill.active { color:var(--accent); background:var(--selected); border-color:var(--accent); }
.pill.label { color:var(--muted); }
hr { margin:0; border:0; border-top:1px solid var(--line); width:100%; }
.table-scroll { overflow:auto; }
table { border-collapse:collapse; width:100%; font-size:13px; }
th,td { text-align:left; padding:12px 14px; border-bottom:1px solid var(--line); vertical-align:top; }
th { color:var(--muted); font-size:12px; font-weight:600; background:var(--surface); }
td:first-child { min-width:145px; font-weight:500; }
.card { border:1px solid var(--line); border-radius:5px; background:var(--surface); }
.card-header { padding:12px 16px; color:var(--muted); font-size:12px; border-bottom:1px solid var(--line); }
.card-body { padding:16px; }
details { border-bottom:1px solid var(--line); padding:10px 0; }
summary { cursor:pointer; font-weight:600; padding:5px 0; }
.details-content { padding:12px 0; }
a { color:var(--accent); text-underline-offset:3px; overflow-wrap:anywhere; }
.document { max-width:1040px; margin:auto; padding:24px; }
.document.source { max-width:none; }
.document-header { display:flex; gap:24px; flex-wrap:wrap; padding-bottom:18px; margin-bottom:24px; border-bottom:1px solid var(--line); }
.document-header span { color:var(--subtle); overflow-wrap:anywhere; font-size:12px; }
.markdown h1,.markdown h2,.markdown h3 { margin:28px 0 12px; }
.markdown p,.markdown ul,.markdown ol,.markdown pre,.markdown table { margin:12px 0; }
.markdown pre { padding:16px; background:var(--surface); overflow:auto; }
.markdown blockquote { border-left:2px solid var(--line); margin-left:0; padding-left:18px; color:var(--muted); }
code { font-family:'DejaVu Sans Mono',monospace; font-size:12px; }
.source-code { overflow:auto; line-height:1.6; }
.source-code code > div { min-width:max-content; display:flex; }
.line-number { width:64px; flex-shrink:0; text-align:right; padding-right:18px; color:var(--subtle); text-decoration:none; user-select:none; }
.highlight-line { background:var(--selected); }
@media(max-width:600px) { h1 {font-size:21px;} td,th {padding:10px;} .document {padding:16px;} }