aboutsummaryrefslogtreecommitdiff
path: root/public/css/dirlist.css
blob: 0737c0e2243d8816a4cb6ab1c692187fa301488d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
:root {
  --background: #f2efbd;
  --background-dim: hsl(57, 85%, 85%);
  --foreground: #2a271c;
  --border-color: #f27405;
  --border: var(--border-color) 2px solid;
  --shadow-color: hsla(11, 96%, 43%, 0.4);
  --shadow: drop-shadow(8px 8px var(--shadow-color));
  --shadow-small: drop-shadow(3px 3px var(--shadow-color));
  --links: hsl(183, 93%, 27%);
  --links-hover: hsl(183, 93%, 15%);
  --table-header: hsla(11, 96%, 43%, 0.2);
}

body {
  background-color: var(--background);
  color: var(--foreground);
  margin: 20px;
}

img {
  image-rendering: pixelated;
}

a {
  color: var(--links);
  text-decoration: underline dotted;
}

a:hover {
  color: var(--links-hover);
  text-decoration: underline solid;
}

h1#indextitle {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  margin: 0;
}

tr,
th,
td {
  font-family: monospace;
  font-size: 12pt;
  padding: 0 15px;
}

tr td:nth-child(2) {
  padding-left: 0;
}

address {
  font-family: sans-serif;
  font-size: 12pt;
}

.description {
  font-style: italic;
  font-size: 90%;
}