]>
Commit | Line | Data |
---|---|---|
54345095 | 1 | html { scroll-behavior: smooth } |
554c7e00 | 2 | body { |
c21740be | 3 | font-size: 1em; |
b05364b7 | 4 | font: -apple-system-body; |
cb935595 | 5 | font-family: "Hoefler Text", "Times New Roman", serif; |
1203ab0c | 6 | font-feature-settings: "liga" 1, "dlig" 1, "pnum" 1; |
ea3c62fe RBR |
7 | line-height: 1.6; |
8 | letter-spacing: 0.02em; | |
554c7e00 | 9 | } |
b28d5c2c RBR |
10 | aside { |
11 | clear: both; | |
69c55f3c | 12 | padding: 2em; |
b28d5c2c | 13 | } |
7629ba8e | 14 | ::selection { |
7629ba8e | 15 | background-color: #e8e8e8; |
69c55f3c | 16 | color: #00f; |
7629ba8e | 17 | } |
f752d89a | 18 | @media only screen and (min-width: 500px) { |
54345095 | 19 | body { overflow-x: auto } |
69c55f3c | 20 | main { padding: 0 64px 0 124px } |
b22440c7 RBR |
21 | h1 a { |
22 | display: block; | |
23 | width: 64px; | |
24 | } | |
7d88d76a RBR |
25 | header { |
26 | float: left; | |
5d993deb | 27 | margin-top: 0.8em; |
7d88d76a | 28 | } |
69c55f3c RBR |
29 | .columned { |
30 | width: max-content; | |
31 | ||
32 | .h2:not(:only-child) { | |
33 | float: left; | |
34 | margin: 0 60px 0 0; | |
35 | ||
36 | h2 { max-width: 14.6em } | |
37 | .h3, | |
38 | li, | |
39 | p { max-width: 24em } | |
40 | pre { max-width: 25em } | |
41 | } | |
42 | ||
43 | .h2:first-of-type { | |
44 | columns: 3; | |
45 | width: 24em; | |
46 | ||
47 | pre[role="img"]:first-of-type { margin-top: 1.64em } | |
48 | h2:empty {display: none} | |
49 | h2, | |
50 | pre, | |
51 | ul, | |
52 | p:not(.a) { column-span: all } | |
53 | p { break-after: column } | |
54 | p.a { break-after: avoid } | |
55 | } | |
56 | } | |
f752d89a RBR |
57 | } |
58 | ||
0d649c62 | 59 | .a { margin: 0 0.3em } |
69c55f3c RBR |
60 | pre { |
61 | background-color: #eee; | |
62 | font-family: courier, monospace; | |
63 | font-size: 0.875em; | |
1949f067 | 64 | max-width: 55em; |
69c55f3c RBR |
65 | overflow-x: auto; |
66 | padding: 1em; | |
67 | } | |
68 | pre[role="img"] { line-height: 1 } | |
c1bc1a5c | 69 | blockquote, p, article > div { |
c1bc1a5c RBR |
70 | max-width: 45em |
71 | } | |
f752d89a RBR |
72 | blockquote { |
73 | border-left: 4px solid #ccc; | |
74 | padding-left: 10px; | |
75 | } | |
f752d89a | 76 | br { display: none } |
c1bc1a5c | 77 | h1, h2, h3 { font-weight: normal } |
11f7c101 RBR |
78 | h1 { font-size: 2em } |
79 | h2 { font-size: 1.65em } | |
1b814f1c | 80 | h3 { font-size: 1.25em } |
01c71b7e | 81 | header h1 { font-size: 1em } |
554c7e00 | 82 | |
3b6787e4 | 83 | canvas { |
36626ad1 | 84 | background-color: #000; |
ad06827e | 85 | border: 1px solid #000; |
69c55f3c RBR |
86 | display: block; |
87 | height: 64px; | |
88 | width: 64px; | |
967d51a0 BB |
89 | } |
90 | ||
21b1c71d | 91 | @media (prefers-color-scheme: dark) { |
b44cad65 | 92 | body { |
554c7e00 | 93 | background: #000; |
69c55f3c | 94 | color: #fff; |
b44cad65 | 95 | } |
36626ad1 RBR |
96 | canvas { |
97 | background-color: #fff; | |
ad06827e | 98 | border: 1px solid #fff; |
36626ad1 | 99 | } |
69c55f3c | 100 | a { color: #5dc1fd } |
54345095 | 101 | a:visited { color: #ed6eff } |
54345095 | 102 | pre { background-color: #222 } |
bb31ec9c | 103 | } |