modern.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. /* pisg theme: modern - Ink on paper, colour only for data; follows the visitor's light/dark setting.
  2. Generated by layout/build-themes.py, edit the palette there. */
  3. :root {
  4. color-scheme: light dark;
  5. --bg: #f6f7f9;
  6. --surface: #ffffff;
  7. --fg: #171b21;
  8. --muted: #59626d;
  9. --line: #e0e3e8;
  10. --line2: #c6ccd4;
  11. --hover: #eceff3;
  12. --mark: #2a78d6;
  13. --t0: #4a3aa7;
  14. --t1: #eda100;
  15. --t2: #1baf7a;
  16. --t3: #eb6834;
  17. --male: #2a5fb0;
  18. --female: #b03a72;
  19. --shadow: 0 18px 32px -14px rgba(20,24,30,.28);
  20. }
  21. @media (prefers-color-scheme: dark) {
  22. :root {
  23. --bg: #0f1318;
  24. --surface: #171c23;
  25. --fg: #e8ebef;
  26. --muted: #98a2ae;
  27. --line: #252c35;
  28. --line2: #38414c;
  29. --hover: #1b2129;
  30. --mark: #3987e5;
  31. --t0: #9085e9;
  32. --t1: #c98500;
  33. --t2: #199e70;
  34. --t3: #d95926;
  35. --male: #7aa7ea;
  36. --female: #e58ab5;
  37. --shadow: 0 18px 32px -14px rgba(0,0,0,.6);
  38. }
  39. }
  40. /* pisg output is table markup, so these rules restyle the existing classes (headtext, hicell,
  41. tdtop, rankc ...). The generator wraps each section in <div class="card" id="...">. */
  42. html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
  43. body {
  44. margin: 0;
  45. padding: 32px 24px 96px;
  46. background: var(--bg);
  47. color: var(--fg);
  48. font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  49. font-size: 15px;
  50. line-height: 1.55;
  51. }
  52. body > div { max-width: 1040px; margin: 0 auto; text-align: left; } /* pisg centres it with align=center */
  53. /* Fixed 925/929px table widths are attributes, so plain CSS overrides them. */
  54. table { border-collapse: separate; border-spacing: 0; max-width: 100%; }
  55. table[width] { width: 100%; }
  56. table[width="520"] { width: auto; margin: 10px 0 0; }
  57. td { color: var(--fg); font-family: inherit; font-size: 14px; text-align: left; padding: 9px 10px; vertical-align: middle; overflow-wrap: anywhere; } /* long URLs and nicks wrap instead of forcing a scrollbar */
  58. a, a:link, a:visited { color: inherit; font-weight: 600; text-decoration: underline; text-decoration-color: var(--line2); text-underline-offset: 3px; }
  59. a:hover { text-decoration-color: currentColor; }
  60. a:focus-visible, summary:focus-visible, button:focus-visible { outline: 2px solid var(--fg); outline-offset: 2px; }
  61. a.background, a.background:link, a.background:visited { color: var(--muted); font-weight: 500; }
  62. /* ---- Masthead: reads like an IRC header, "#channel @ network" ---- */
  63. .title, #pagetitle1 {
  64. margin: 4px 0 8px;
  65. font-family: ui-monospace, "SF Mono", "Cascadia Mono", "JetBrains Mono", Menlo, Consolas, "Liberation Mono", monospace;
  66. font-size: clamp(24px, 4.6vw, 40px);
  67. line-height: 1.15;
  68. font-weight: 700;
  69. letter-spacing: -0.035em;
  70. color: var(--fg);
  71. overflow-wrap: anywhere;
  72. }
  73. .subtitle { margin: 0 0 18px; color: var(--muted); font-size: 14px; }
  74. .subtitle b { color: var(--fg); font-weight: 600; }
  75. /* ---- Sections: a rule and space, no boxes ---- */
  76. .card { margin: 56px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line2); overflow-x: auto; text-align: left; scroll-margin-top: 64px; }
  77. .card > br { display: none; }
  78. .pisg-nav + .card { margin-top: 28px; border-top: 0; padding-top: 0; }
  79. #overview .headlinebg { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); } /* the sentence below is its headline; the menu still links here */
  80. .card > table:first-of-type { margin-bottom: 8px; }
  81. .headlinebg { background: none; padding: 0; }
  82. .headtext { margin: 0; padding: 0; border: 0; background: none; color: var(--fg);
  83. font-size: 20px; line-height: 1.25; font-weight: 650; letter-spacing: -0.01em; text-align: left; }
  84. .intro { margin: 2px 0 16px; max-width: 68ch; color: var(--muted); }
  85. /* ---- Wide screens: a menu down the left, the page fills the rest ---- */
  86. body { container-type: inline-size; }
  87. .nav-side { display: none; }
  88. @media (min-width: 1000px) {
  89. body { padding-left: 272px; padding-right: 28px; }
  90. body > div { max-width: 1720px; }
  91. .pisg-nav { box-sizing: border-box; position: fixed; top: 0; left: 0; bottom: 0; width: 232px; margin: 0; padding: 26px 12px 24px 24px;
  92. border: 0; border-right: 1px solid var(--line2); background: var(--bg); overflow-y: auto; z-index: 30; }
  93. .nav-menu { display: none; }
  94. .nav-side { display: block; }
  95. .nav-brand, .nav-brand:link, .nav-brand:visited { display: block; margin: 0 0 18px; font-family: ui-monospace, "SF Mono", "Cascadia Mono", "JetBrains Mono", Menlo, Consolas, "Liberation Mono", monospace; font-size: 18px; font-weight: 700;
  96. letter-spacing: -0.02em; text-decoration: none; overflow-wrap: anywhere; }
  97. .nav-side-list { margin: 0; padding: 0; list-style: none; }
  98. .nav-side-list a, .nav-side-list a:link, .nav-side-list a:visited { display: block; margin-left: -10px; padding: 6px 10px; border-left: 2px solid transparent;
  99. color: var(--muted); font-size: 14px; font-weight: 500; text-decoration: none; }
  100. .nav-side-list a:hover { color: var(--fg); background: var(--hover); }
  101. .nav-side-list a.active { color: var(--fg); font-weight: 650; border-left-color: var(--mark); }
  102. .card { scroll-margin-top: 24px; }
  103. .card td:not(.headtext):not(.headlinebg) { padding-left: 8px; padding-right: 8px; } /* the 10-column nick table just fits beside the menu */
  104. .pisg-nav + .card { margin-top: 20px; }
  105. }
  106. /* Two short sections share a row when the page is wide enough (measured on the page, so it also holds inside a frame). */
  107. @container (min-width: 1080px) {
  108. body > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 56px; grid-auto-flow: dense; }
  109. body > div > * { grid-column: 1 / -1; }
  110. body > div > .card.half { grid-column: auto; }
  111. }
  112. /* Way back to the landing page (option HomeLink) */
  113. .homebar { margin: 0 0 14px; text-align: left; }
  114. .homebtn, .homebtn:link, .homebtn:visited { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border: 1px solid var(--line2); border-radius: 6px;
  115. background: var(--surface); color: var(--fg); font-size: 13px; font-weight: 600; line-height: 1.3; text-decoration: none; }
  116. .homebtn:hover { background: var(--hover); border-color: var(--fg); }
  117. /* Column titles */
  118. .tdtop { background: none; color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: .08em;
  119. text-transform: uppercase; border-bottom: 1px solid var(--line2); padding: 8px 10px; }
  120. .tdtop { white-space: nowrap; } /* column titles stay on one line; the table scrolls instead */
  121. .tdtop b { font-weight: 600; }
  122. /* Rows: one hairline each */
  123. .hicell { background: none; border-bottom: 1px solid var(--line); border-radius: 0; padding: 11px 10px; }
  124. .hicell10 { background: none; font-size: 12px; border-bottom: 1px solid var(--line); }
  125. tr:last-child > .hicell { border-bottom: 0; }
  126. /* pisg writes an inline colour gradient on the top-nicks rows (HiCell/HiCell2); the theme owns colour. */
  127. td[style*="background-color"] { background: transparent !important; border-bottom: 1px solid var(--line); }
  128. tr:hover > td[style*="background-color"], tr:hover > .rankc, tr:hover > .hirankc { background: var(--hover) !important; }
  129. .rankc, .hirankc, .rankc10 { background: transparent; color: var(--muted); font-family: ui-monospace, "SF Mono", "Cascadia Mono", "JetBrains Mono", Menlo, Consolas, "Liberation Mono", monospace; font-size: 12px;
  130. font-weight: 500; text-align: center; border-bottom: 1px solid var(--line); }
  131. .hirankc { color: var(--fg); font-weight: 700; }
  132. .rankc, .hirankc, .rankc10 { white-space: nowrap; }
  133. .rankc10 { text-align: left; }
  134. /* nicks are set in monospace, as in an IRC client */
  135. .rankc + td, .hirankc + td { font-family: ui-monospace, "SF Mono", "Cascadia Mono", "JetBrains Mono", Menlo, Consolas, "Liberation Mono", monospace; font-weight: 600; }
  136. .small, .asmall { color: var(--muted); font-family: inherit; font-size: 12px; }
  137. .asmall { text-align: center; }
  138. /* ---- Bar charts (marks: thin, 4px rounded data end, 2px gap between segments) ---- */
  139. table:not([width]) { width: 100%; table-layout: fixed; margin: 6px 0; }
  140. td.asmall { padding: 0 2px; line-height: 1.3; vertical-align: bottom; } /* bars stand on one baseline */
  141. table:not([width]) tr:first-child > td.asmall { border-bottom: 1px solid var(--line2); }
  142. td.asmall br { display: none; }
  143. td.rankc10center, td.hirankc10center { background: none; border: 0; color: var(--muted); font-family: ui-monospace, "SF Mono", "Cascadia Mono", "JetBrains Mono", Menlo, Consolas, "Liberation Mono", monospace;
  144. font-size: 11px; text-align: center; padding: 6px 0 0; min-width: 0; letter-spacing: -0.02em; } /* no side padding: 24 narrow columns must not poke out of the table */
  145. td.hirankc10center { color: var(--fg); font-weight: 700; }
  146. /* a number over every bar is noise: the peak keeps its label, the rest are in the tooltip */
  147. td.asmall .v { display: none; }
  148. td.asmall .v.pk { display: block; color: var(--fg); font-family: ui-monospace, "SF Mono", "Cascadia Mono", "JetBrains Mono", Menlo, Consolas, "Liberation Mono", monospace; font-weight: 600; }
  149. .rankc10center.skip { visibility: hidden; }
  150. img[id$="-v"] { display: block; width: min(64%, 22px); margin: 0 auto; border-radius: 0; }
  151. img[id$="-v"]:first-of-type { border-radius: 4px 4px 0 0; }
  152. img[id$="-v"]:not(:first-of-type) { margin-top: 2px; }
  153. img[id$="-v"]:only-of-type { border-radius: 4px 4px 0 0; }
  154. img[id$="-h"] { height: 8px; vertical-align: middle; margin: 0 1px 0 0; border-radius: 0; }
  155. td[nowrap] img[id$="-h"] { background: var(--mark); margin-right: 0; } /* lines: one value, one colour; the "when" column keeps the four */
  156. img[id$="-h"]:first-of-type { border-radius: 4px 0 0 4px; }
  157. img[id$="-h"]:last-of-type { margin-right: 0; border-radius: 0 4px 4px 0; }
  158. img[id$="-h"]:only-of-type { border-radius: 4px; }
  159. td.asmall img[id$="-h"] { margin-right: 6px; }
  160. table[width="520"] img[id$="-h"] { width: 14px; height: 8px; border-radius: 2px; } /* legend: a colour key, not a bar */
  161. table[width="520"] td.asmall { text-align: left; padding: 0 14px 0 0; white-space: nowrap; }
  162. /* the colour key wraps instead of forcing a sideways scrollbar on a narrow screen */
  163. table[width="520"] { display: flex; flex-wrap: wrap; gap: 4px 0; width: auto; max-width: 100%; }
  164. table[width="520"] tbody, table[width="520"] tr { display: contents; }
  165. img[id="blue-h"], img[id="blue-v"] { background: var(--t0); }
  166. img[id="green-h"], img[id="green-v"] { background: var(--t1); }
  167. img[id="yellow-h"], img[id="yellow-v"] { background: var(--t2); }
  168. img[id="red-h"], img[id="red-v"] { background: var(--t3); }
  169. td[rowspan] img { width: 36px; height: 36px; object-fit: cover; border-radius: 50%; display: block; margin: 0 auto; }
  170. td[rowspan] img.defpic { width: 26px; height: 26px; opacity: .3; } /* the shared default picture: a quiet placeholder */
  171. /* ranked tables: one left edge, and no stray rule under the last row */
  172. tr:first-child > td:not([class]):first-child { border-bottom: 1px solid var(--line2); }
  173. tr:last-child > .rankc, tr:last-child > .hirankc, tr:last-child > td[style*="background-color"] { border-bottom: 0; }
  174. .rankc, .hirankc { width: 44px; }
  175. td[style*="background-color"] { white-space: nowrap; } /* "3 days ago" stays on one line ... */
  176. td[style*="background-color"].quote { white-space: normal; } /* ... only the quote may wrap */
  177. .male, .male a { color: var(--male); }
  178. .female, .female a { color: var(--female); }
  179. .bot, .bot a { color: var(--muted); font-style: italic; }
  180. /* single-series bars */
  181. .bar { display: inline-block; vertical-align: middle; width: 140px; max-width: 100%; height: 8px; border-radius: 4px; background: var(--line); overflow: hidden; }
  182. .bar span { display: block; height: 100%; border-radius: 4px; background: var(--mark); opacity: 1; }
  183. .sigword { font-family: ui-monospace, "SF Mono", "Cascadia Mono", "JetBrains Mono", Menlo, Consolas, "Liberation Mono", monospace; font-weight: 600; }
  184. /* "These didn't make it to the top:" is a bare <b><i> under the table; give it the same voice as a column title */
  185. .card > b { display: block; margin: 26px 0 4px; color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
  186. .card > b > i { font-style: normal; }
  187. #totallines { margin-top: 56px; padding-top: 14px; border-top: 1px solid var(--line2); color: var(--muted); font-size: 12px; }
  188. #footer { margin-top: 2px; color: var(--muted); }
  189. #footer .small { font-size: 12px; }
  190. ::selection { background: var(--fg); color: var(--bg); }
  191. /* ---- Section menu: one slim bar, one panel ---- */
  192. .pisg-nav { background: var(--bg); border-bottom-color: var(--line2); margin-bottom: 0; }
  193. .nav-current { color: var(--fg); font-weight: 650; }
  194. .nav-toggle { color: var(--muted); opacity: 1; }
  195. .nav-list { background: var(--surface); border-color: var(--line2); box-shadow: var(--shadow); }
  196. .nav-list a, .nav-list a:link, .nav-list a:visited { color: var(--fg); font-weight: 500; text-decoration: none; }
  197. .nav-list a:hover { background: var(--hover); }
  198. .nav-list a.active { font-weight: 700; }
  199. /* ---- Overview: a sentence and a list of facts, not a wall of tiles ---- */
  200. .hero { margin: 2px 0 22px; font-size: clamp(20px, 2.6vw, 26px); line-height: 1.3; font-weight: 650; letter-spacing: -0.02em; text-wrap: balance; }
  201. .hero b { font-family: ui-monospace, "SF Mono", "Cascadia Mono", "JetBrains Mono", Menlo, Consolas, "Liberation Mono", monospace; font-weight: 700; letter-spacing: -0.05em; }
  202. .facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 0 56px; margin: 0; }
  203. .fact { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); }
  204. .fact dt { color: var(--muted); }
  205. .fact dd { margin: 0; text-align: right; font-family: ui-monospace, "SF Mono", "Cascadia Mono", "JetBrains Mono", Menlo, Consolas, "Liberation Mono", monospace; font-weight: 600; font-variant-numeric: tabular-nums; }
  206. .fact dd small { display: block; color: var(--muted); font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-size: 12px; font-weight: 400; }
  207. /* ---- Roles, personalities: columns split by a rule, no boxes ---- */
  208. .cardgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(168px, 1fr)); gap: 28px 32px; margin: 8px 0 0; }
  209. .minicard { display: flex; flex-direction: column; gap: 3px; padding: 12px 0 0; border: 0; border-top: 1px solid var(--line2); border-radius: 0; background: none; text-align: left; }
  210. .mc-title { color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
  211. .mc-name { font-family: ui-monospace, "SF Mono", "Cascadia Mono", "JetBrains Mono", Menlo, Consolas, "Liberation Mono", monospace; font-size: 19px; font-weight: 700; line-height: 1.3; overflow-wrap: anywhere; }
  212. .mc-desc { color: var(--muted); font-size: 13px; }
  213. .mc-value { margin-top: 6px; font-size: 13px; font-weight: 600; }
  214. .mc-list { margin: 8px 0 0; padding: 0; list-style: none; }
  215. .mc-list li { display: flex; justify-content: space-between; gap: 8px; padding: 5px 0; border-top: 1px solid var(--line); font-family: ui-monospace, "SF Mono", "Cascadia Mono", "JetBrains Mono", Menlo, Consolas, "Liberation Mono", monospace; font-size: 13px; }
  216. .mc-list span { color: var(--muted); }
  217. .minicard.t0 { border-top: 3px solid var(--t0); } .minicard.t1 { border-top: 3px solid var(--t1); }
  218. .minicard.t2 { border-top: 3px solid var(--t2); } .minicard.t3 { border-top: 3px solid var(--t3); }
  219. /* ---- Relation map: the one lifted surface ---- */
  220. .relmap-canvas svg { box-sizing: border-box; background: var(--surface); border: 1px solid var(--line2); border-radius: 8px; } /* width:100% must include the border */
  221. .relmap-info { background: none; border: 0; border-top: 1px solid var(--line2); border-radius: 0; padding: 12px 0 0; }
  222. .relmap-legend { color: var(--muted); }
  223. .ri-title { font-family: ui-monospace, "SF Mono", "Cascadia Mono", "JetBrains Mono", Menlo, Consolas, "Liberation Mono", monospace; color: var(--fg); }
  224. .ri-sub, .ri-num { color: var(--muted); opacity: 1; }
  225. .ri-list li { border-top-color: var(--line); }
  226. .ri-link { color: var(--fg); font-family: ui-monospace, "SF Mono", "Cascadia Mono", "JetBrains Mono", Menlo, Consolas, "Liberation Mono", monospace; text-decoration-color: var(--line2); }
  227. .lg0 i, .rm-node.t0 circle { background: var(--t0); fill: var(--t0); } .lg1 i, .rm-node.t1 circle { background: var(--t1); fill: var(--t1); }
  228. .lg2 i, .rm-node.t2 circle { background: var(--t2); fill: var(--t2); } .lg3 i, .rm-node.t3 circle { background: var(--t3); fill: var(--t3); }
  229. .rm-line { stroke: var(--muted); }
  230. .rm-node circle { stroke: var(--surface); }
  231. .rm-node text { fill: var(--fg); stroke: var(--surface); font-family: ui-monospace, "SF Mono", "Cascadia Mono", "JetBrains Mono", Menlo, Consolas, "Liberation Mono", monospace; font-size: 12px; }
  232. .rm-edge.sel .rm-line { stroke: var(--fg); }
  233. .rm-node:focus-visible circle, .rm-node.sel circle { stroke: var(--fg); }
  234. @media (max-width: 720px) {
  235. body { padding: 20px 16px 72px; font-size: 14px; }
  236. .hr.rankc10center:nth-child(even) { visibility: hidden; } /* every second hour label on a phone */
  237. td { padding: 7px 6px; font-size: 13px; }
  238. .bar { width: 64px; }
  239. .card { margin-top: 44px; }
  240. .facts { grid-template-columns: 1fr; }
  241. td[rowspan] img { width: 30px; height: 30px; }
  242. }