xref: /openbsd-src/usr.sbin/httpd/css.h.in (revision 0711a94313692c7a959167e67a9381016ef497e7)
1static const char *css =
2body {
3    background-color: white;
4    color: black;
5    font-family: sans-serif;
6    font-variant-emoji: text;
7}
8table {
9    border-collapse: collapse;
10    border: 1px solid;
11}
12tr.sort th {
13    border-bottom: 1px solid;
14    font-weight: normal;
15    text-decoration: underline;
16    cursor: pointer;
17}
18tr.sort th.sorted { font-weight: bold; }
19tr.sort th::after { content: "\a0\2195"; }
20tr.dir td:nth-child(2n+1) {
21    font-weight: bold;
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