]> git.r.bdr.sh - rbdr/r.bdr.sh/blame - css/style.css
Support apple-system-body only on iOS/iPadOS
[rbdr/r.bdr.sh] / css / style.css
CommitLineData
20d294a5
RBR
1* {
2 padding: 0;
3 margin: 0
4}
54345095 5html { scroll-behavior: smooth }
554c7e00 6body {
c21740be 7 font-size: 1em;
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;
20d294a5 12 padding: 2em;
554c7e00 13}
5a8ad39f 14@supports (-webkit-touch-callout: none) { body { font: -apple-system-body } }
b28d5c2c
RBR
15aside {
16 clear: both;
20d294a5 17 padding: 2em 0;
b28d5c2c 18}
7629ba8e 19::selection {
7629ba8e 20 background-color: #e8e8e8;
69c55f3c 21 color: #00f;
7629ba8e 22}
271fa561 23.h2 { margin-top: 1em }
f752d89a 24@media only screen and (min-width: 500px) {
54345095 25 body { overflow-x: auto }
69c55f3c
RBR
26 .columned {
27 width: max-content;
28
29 .h2:not(:only-child) {
30 float: left;
31 margin: 0 60px 0 0;
32
33 h2 { max-width: 14.6em }
34 .h3,
35 li,
36 p { max-width: 24em }
37 pre { max-width: 25em }
38 }
39
40 .h2:first-of-type {
41 columns: 3;
42 width: 24em;
43
69c55f3c
RBR
44 h2:empty {display: none}
45 h2,
46 pre,
47 ul,
48 p:not(.a) { column-span: all }
49 p { break-after: column }
50 p.a { break-after: avoid }
51 }
52 }
f752d89a
RBR
53}
54
0d649c62 55.a { margin: 0 0.3em }
69c55f3c
RBR
56pre {
57 background-color: #eee;
58 font-family: courier, monospace;
59 font-size: 0.875em;
1949f067 60 max-width: 55em;
69c55f3c
RBR
61 overflow-x: auto;
62 padding: 1em;
63}
20d294a5 64pre[role="img"] { display: none }
c1bc1a5c 65blockquote, p, article > div {
c1bc1a5c
RBR
66 max-width: 45em
67}
f752d89a
RBR
68blockquote {
69 border-left: 4px solid #ccc;
70 padding-left: 10px;
71}
f752d89a 72br { display: none }
20d294a5
RBR
73h1, h2, h3 {
74 font-family: "Avenir Next";
75 font-weight: 900
76}
11f7c101 77h1 { font-size: 2em }
20d294a5
RBR
78h3 {
79 font-weight: 600;
80 margin-top: 1em
81}
82
020036ca
RBR
83h2, h3, a { color: #00f }
84[data-title="/index.html"] {
85 .h2:nth-of-type(n+2):nth-of-type(-n+4) {
86 h2, h3, a { color: #EE0700 }
87 }
20d294a5 88
020036ca
RBR
89 .h2:nth-of-type(n+5):nth-of-type(-n+6) {
90 h2, h3, a { color: #398557 }
91 }
20d294a5 92
020036ca
RBR
93 .h2:nth-of-type(n+7):nth-of-type(-n+9) {
94 h2, h3, a { color: #6A5ACD }
95 }
20d294a5 96
020036ca
RBR
97 .h2:nth-of-type(10) {
98 h2, h3, a { color: #A76905 }
99 }
20d294a5 100
020036ca
RBR
101 .h2:nth-of-type(11) {
102 h2, h3, a { color: #1D76DB }
103 }
20d294a5 104
020036ca
RBR
105 .h2:nth-of-type(n+12):nth-of-type(-n+16) {
106 h2, h3, a { color: #D505C6 }
107 }
20d294a5 108
020036ca
RBR
109 .h2:nth-of-type(17) {
110 h2, h3, a { color: #6A788A }
111 }
20d294a5
RBR
112}
113
114.h2 a {
115 display: inline-block;
116 padding: 0.25em 0;
117 margin: 0.25em 0;
118}
119
120header h1 {
121 font-size: min(7.5rem, 17vw);
122 font-weight: 900;
123 letter-spacing: -0.2em;
124 line-height: 1em;
125}
126header h1 a {
127 background: repeating-linear-gradient(
128 0deg,
129 black,
130 black 1px,
131 white 1px,
132 white 2px
133 );
134 background-clip: text;
135 color: transparent;
136 display: inline-block;
137 padding-right: 0.2em;
138 text-decoration: none;
139 -webkit-text-stroke: 1px #000;
140}
554c7e00 141
3b6787e4 142canvas {
36626ad1 143 background-color: #000;
ad06827e 144 border: 1px solid #000;
20d294a5 145 display: inline-block;
69c55f3c
RBR
146 height: 64px;
147 width: 64px;
967d51a0
BB
148}
149
21b1c71d 150@media (prefers-color-scheme: dark) {
b44cad65 151 body {
554c7e00 152 background: #000;
69c55f3c 153 color: #fff;
b44cad65 154 }
36626ad1
RBR
155 canvas {
156 background-color: #fff;
ad06827e 157 border: 1px solid #fff;
36626ad1 158 }
020036ca
RBR
159 h2, h3, a { color: #5dc1fd }
160 [data-title="/index.html"] .h2:nth-of-type(n+7):nth-of-type(-n+9) {
20d294a5
RBR
161 h2, h3, a { color: #675CFB }
162 }
54345095 163 pre { background-color: #222 }
20d294a5
RBR
164 header h1 a {
165 -webkit-text-stroke: 1px #fff;
166 }
bb31ec9c 167}