/* Titania: a small, document-oriented mirror index. No remote resources. */
:root {
  color-scheme: light dark;
  --paper: #fafbfc;
  --ink: #24303b;
  --muted: #526171;
  --rule: #b9c4ce;
  --shade: #eef2f5;
  --link: #174f80;
  --focus: #115ca1;
  --stripe: #22394d;
  --mono: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-family: Arial, Helvetica, sans-serif;
  font-synthesis: none;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #171e24;
    --ink: #e2e7ec;
    --muted: #a9b8c5;
    --rule: #4b5b68;
    --shade: #232e38;
    --link: #9bc8f0;
    --focus: #b2d9ff;
    --stripe: #7b9fbc;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  border-top: 4px solid var(--stripe);
  background: var(--paper);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}
a { color: var(--link); text-underline-offset: .17em; text-decoration-thickness: 1px; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible, [tabindex]:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.jump { position: absolute; top: .5rem; left: 1rem; padding: .65rem 1rem; background: var(--paper); z-index: 10; transform: translateY(-200%); }
.jump:focus { transform: none; }
.frame { width: min(100% - 2rem, 61rem); margin-inline: auto; }
.mast { padding-top: 1.7rem; }
.identity { display: flex; align-items: center; flex-wrap: wrap; gap: .45rem 1.2rem; margin-bottom: 1.1rem; }
.wordmark { display: inline-flex; align-items: center; gap: .65rem; min-height: 2.75rem; color: var(--ink); font: 700 1.45rem/1.3 var(--mono); letter-spacing: -.04em; text-decoration: none; }
.wordmark img { flex-shrink: 0; }
.identity small { font: .78rem/1.5 var(--mono); color: var(--muted); letter-spacing: .05em; text-transform: uppercase; }
.tabs { display: flex; flex-wrap: wrap; gap: .15rem 1.5rem; border-block: 1px solid var(--rule); }
.tabs a { display: inline-flex; align-items: center; min-height: 2.9rem; font: .875rem/1.4 var(--mono); text-decoration: none; border-bottom: 3px solid transparent; padding-top: 3px; }
.tabs a:hover { text-decoration: underline; }
.tabs a[aria-current="page"] { border-bottom-color: var(--ink); color: var(--ink); font-weight: 700; }
main { padding-block: 2.3rem 3rem; min-height: 26rem; }
h1, h2, h3 { line-height: 1.3; }
h1 { font: 700 1.8rem/1.3 var(--mono); letter-spacing: -.045em; margin: 0 0 .85rem; }
h2 { font-size: 1.05rem; margin: 2rem 0 .65rem; }
h3 { font-size: 1rem; margin: 1.6rem 0 .45rem; }
p { margin: 0 0 1rem; }
.intro { max-width: 46rem; }
.subtle { color: var(--muted); font-size: .9rem; }
.browse-line { margin: 1.15rem 0 1.6rem; font-family: var(--mono); font-size: .95rem; }
.browse-line a { display: inline-block; padding-block: .4rem; }
.path { font-family: var(--mono); font-size: .84rem; color: var(--muted); margin-bottom: 1rem; }
.path a { display: inline-block; padding-block: .3rem; }
table { width: 100%; border-collapse: collapse; table-layout: fixed; font-size: .94rem; margin: .65rem 0 1.1rem; }
caption { font-weight: 700; text-align: left; margin-bottom: .6rem; }
th, td { padding: .65rem .8rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--rule); }
thead th { background: var(--shade); border-top: 1px solid var(--rule); font: 700 .77rem/1.5 var(--mono); text-transform: uppercase; letter-spacing: .03em; }
tbody th { font-weight: 400; }
.entry-col { width: 31%; }
.file-col { width: 69%; }
.files tbody th a, .directories tbody th a { font-family: var(--mono); font-size: .9rem; display: inline-block; padding-block: .35rem; }
td p { margin: .1rem 0; }
.bytes { font: .8rem/1.7 var(--mono); color: var(--muted); font-variant-numeric: tabular-nums; }
.notice { border-left: 3px solid var(--rule); padding: .1rem 0 .1rem 1rem; margin: 1.4rem 0; max-width: 48rem; }
.notice p { margin: .4rem 0; }
code, pre { font-family: var(--mono); font-size: .9em; }
pre { white-space: pre-wrap; overflow-wrap: anywhere; background: var(--shade); padding: 1rem; border: 1px solid var(--rule); line-height: 1.7; }
.reading { max-width: 46rem; }
.facts { margin: 1.1rem 0; }
.facts > div { display: grid; grid-template-columns: 10rem 1fr; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid var(--rule); }
.facts dt { font: 700 .85rem/1.7 var(--mono); }
.facts dd { margin: 0; }
.end { border-top: 1px solid var(--rule); padding-block: 1rem 2rem; color: var(--muted); font: .77rem/1.7 var(--mono); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .4rem 1.5rem; }
.end a { display: inline-block; padding-block: .3rem; }
@media (max-width: 36rem) {
  .mast { padding-top: 1rem; }
  .identity { gap: .3rem 1rem; }
  .identity small { font-size: .7rem; }
  .tabs { gap: 0 1.05rem; }
  .tabs a { font-size: .8rem; }
  main { padding-top: 1.7rem; }
  h1 { font-size: 1.45rem; }
  th, td { padding: .6rem .4rem; }
  .entry-col { width: 38%; }
  .files tbody th a, .directories tbody th a { font-size: .8rem; }
  table { font-size: .87rem; }
  .facts > div { display: block; }
  .facts dt { margin-bottom: .3rem; }
}
@media print {
  :root { color-scheme: light; --paper: white; --ink: black; --muted: #333; --link: black; --rule: #888; --shade: #eee; }
  .jump { display: none; }
  main { min-height: 0; }
}
