1static const char *css = 2body { 3 background-color: white; 4 color: black; 5 font-family: sans-serif; 6} 7table { 8 border-collapse: collapse; 9 border: 1px solid; 10} 11tr.sort th { 12 border-bottom: 1px solid; 13 font-weight: normal; 14 text-decoration: underline; 15 cursor: pointer; 16} 17tr.sort th.sorted { font-weight: bold; } 18tr.sort th::after { content: "\a0\2195"; } 19tr.dir td:nth-child(2n+1) { 20 font-weight: bold; 21 font-style: italic; 22} 23td, th { padding: 2pt 2em; } 24td:first-child, th:first-child { padding-left: 5pt; } 25td:last-child, th:last-child { padding-right: 5pt; } 26td:nth-child(n+2) { text-align: end; } 27thead { text-align: left; } 28@media (prefers-color-scheme: dark) { 29 body { 30 background-color: #1E1F21; 31 color: #EEEFF1; 32 } 33 a { color: #BAD7FF; } 34} 35