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