public inbox for ~johnnyrichard/olang-devel@lists.sr.ht
 help / color / mirror / code / Atom feed
0a502549fa72f150ffca104338a188d008f7e158 blob 2668 bytes (raw)

  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
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
 
:root {
  --background-color: white;
  --text-color: black;
  --link-color: teal;
  --text-highlight-color: silver;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background-color: black;
    --text-color: white;
    --link-color: aqua;
    --text-highlight-color: grey;
  }
}

* {
  margin: 0;
  padding: 0;
}

a {
  color: var(--link-color);
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1rem;
  margin: 0;
  margin-bottom: 1ch;
}

ul {
  margin: 0 4ch 2ch;
}

ul ul {
  margin-bottom: 0;
}

dt {
  margin-bottom: 1ch;
}
dd {
  margin-left: 4ch;
}

p {
  padding-bottom: 1ch;
}

div.example {
  margin: 0;
}

body {
  background: var(--background-color);
  color: var(--text-color);
  margin: 0;
  padding: 0 2ch 2ch;
  font-size: 1rem;
  font-family: monospace;
}

.example-formatted {
  font-family: monospace;
}

.code {
  white-space: nowrap;
  background-color: var(--text-highlight-color);
}

.settitle {
  text-align: left !important;
}

header {
  margin: 2ch auto;
  border-bottom: 1ch solid var(--text-color);
  padding-bottom: 2ch;
}

header > h1 {
  font-weight: normal;
  margin-bottom: 2ch;
}

.nav-panel * {
  margin: 0;
  padding: 0;
}

article, body > div:not(.nav-panel) > *:not(.nav-panel):not(hr) {
  max-width: 80ch;
}

header > nav > span {
  white-space: nowrap;
}

footer {
  margin: 2ch auto;
  padding-top: 2ch;
  border-top: 1ch solid var(--text-color);
}

pre {
  margin-bottom: 1ch;
  max-width: calc(100vw - 7ch);
  width: calc(100vw - 7ch);
  overflow: auto;
  position: relative;
  counter-reset: line;
  background: black;
  color: white;
  border-left: 1ch solid grey;
  padding: 2ch 1ch;
}

dd pre {
  max-width: calc(100vw - 11ch);
  width: calc(100vw - 11ch);
}

pre:before, pre:after {
  content: "";
  background: grey;
  position: absolute;
  left: 0ch;
  width: 1ch;
  height: 1ch;
}

pre:before {
  top: 0ch;
}
pre:after {
  bottom: 0ch;
}

.code-line {
  counter-increment: line;
}

.code-line:before {
  content: "" counter(line, decimal-leading-zero) " ";
  color: grey;
}

.no-numbers .code-line:before {
  content: ""
}

.code-key {
  color: yellow;
}

.code-fn-name {
  color: aqua;
}

.code-symbol,.code-brac {
  color: silver;
}

.code-num {
  color: orange;
}

.code-type {
  color: lime;
}

.code-comment {
  color: grey;
}

.code-macro {
  color: orange;
}

.code-str {
  color: lime;
}

.lang-output {
  color: grey;
}

.lang-bash .code-opt {
  color: silver;
}

.logo-name {
  font-weight: bold;
  background: var(--link-color);
  padding: 0 1ch;
  color: var(--background-color);
}

hr {
  border: none;
  height: 1ch;
  background-color: var(--text-color);
  margin: 2ch 0;
}

ol {
  margin-left: 2ch;
}
debug log:

solving 0a50254 ...
found 0a50254 in http://lists.johnnyrichard.com/olang/20241108042411.105478-1-carlos@maniero.me/
found 9ee71e3 in http://lists.johnnyrichard.com/olang/20241106114243.19137-1-carlos@maniero.me/
found d6cf74a in https://git.johnnyrichard.com/olang.git
preparing index
index prepared:
100644 d6cf74ad1d2034bffc49821ba7bb67cf3742a022	docs/style.css

applying [1/2] http://lists.johnnyrichard.com/olang/20241106114243.19137-1-carlos@maniero.me/
diff --git a/docs/style.css b/docs/style.css
index d6cf74a..9ee71e3 100644


applying [2/2] http://lists.johnnyrichard.com/olang/20241108042411.105478-1-carlos@maniero.me/
diff --git a/docs/style.css b/docs/style.css
index 9ee71e3..0a50254 100644

Checking patch docs/style.css...
Applied patch docs/style.css cleanly.
Checking patch docs/style.css...
Applied patch docs/style.css cleanly.

index at:
100644 0a502549fa72f150ffca104338a188d008f7e158	docs/style.css

Code repositories for project(s) associated with this public inbox

	https://git.johnnyrichard.com/olang.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox