-
Notifications
You must be signed in to change notification settings - Fork 156
/
styles.css
518 lines (422 loc) · 13.2 KB
/
styles.css
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Light and dark theme variables */
.light {
--background-primary: 215deg, 81%, 100%;
--background-secondary: 213deg, 100% 95%;
--background-tertiary: 213deg, 100% 84%;
--foreground-primary: 0deg, 0%, 25%;
--foreground-secondary: 0deg, 0%, 42%;
--foreground-tertiary: 0deg, 0%, 90%;
--foreground-quaternary: 0deg, 0%, 95%;
--runtime-background: 124deg, 100%, 97.1%;
--runtime-foreground: 184deg, 100%, 10%;
--primary: 217deg, 91%, 59%;
--info: 224deg, 64.3%, 32.9%;
--note: 224deg, 64.3%, 32.9%;
--caution: 45.4deg, 93.39%, 47.45%;
--tip: 142deg, 76.2%, 36.3%;
}
.dark {
--background-primary: 216deg, 27.8%, 7.1%;
--background-secondary: 216deg, 27.7%, 12%;
--background-tertiary: 216deg, 27.7%, 22%;
--foreground-primary: 215deg, 17%, 99%;
--foreground-secondary: 215deg, 17%, 71%;
--foreground-tertiary: 215deg, 17%, 20%;
--foreground-quaternary: 215deg, 17%, 10%;
--runtime-background: 124deg, 100%, 3%;
--runtime-foreground: 184deg, 100%, 90%;
--note: 224deg, 64.3%, 82.9%;
--info: 224deg, 64.3%, 69%;
--caution: 45.4deg, 93.39%, 67.11%;
/* The following are not different from light mode (yet?) */
--primary: 217deg, 91%, 59%;
--tip: 142deg, 76.2%, 36.3%;
color: var(--foreground-primary);
background-color: var(--background-primary);
}
/* Scrollbar colors that look good on light and dark theme */
* {
scrollbar-color: hsla(0deg, 0%, 50%, 0.5) hsla(0deg, 0%, 50%, 0.1) !important;
}
.dark-mode-toggle-button img {
@apply fill-foreground-primary;
}
@layer base {
@font-face {
font-family: "Inter";
font-style: normal;
font-weight: 400;
font-display: swap;
src: url("/fonts/inter/Inter-Regular.woff2") format("woff2");
}
@font-face {
font-family: "Inter";
font-style: italic;
font-weight: 400;
font-display: swap;
src: url("/fonts/inter/Inter-Italic.woff2") format("woff2");
}
@font-face {
font-family: "Inter";
font-style: normal;
font-weight: 700;
font-display: swap;
src: url("/fonts/inter/Inter-SemiBold.woff2") format("woff2");
}
@font-face {
font-family: "Inter";
font-style: italic;
font-weight: 700;
font-display: swap;
src: url("/fonts/inter/Inter-SemiBoldItalic.woff2") format("woff2");
}
}
[id] {
scroll-margin-top: 4rem;
}
h1 {
letter-spacing: -0.025em;
}
:where(h2, h3) {
letter-spacing: -0.0125em;
}
.markdown-body {
font-family: inherit;
@apply bg-transparent !important;
/* Override gfm base styles */
p {
@apply mb-6;
}
pre {
@apply mb-6;
}
h1:first-child {
@apply mt-0;
}
h2 {
@apply mt-12 mb-4;
}
h3 {
@apply mt-10 mb-4;
}
h4 {
@apply mt-6 mb-4;
}
:where(h1, h2, h3) {
letter-spacing: -0.0125em;
}
:where(h2, h3, h4, h5, h6) {
.header-anchor:hover {
text-decoration: underline;
text-underline-offset: 4px;
}
.anchor-end {
opacity: 0;
transition: opacity 0.2s;
font-weight: normal;
}
&:hover .anchor-end {
opacity: 1;
}
}
& details {
@apply rounded border border-gray-1 py-4 px-4;
&[open] summary {
@apply pb-4 mb-4 border-b border-gray-00;
}
& summary::marker {
@apply text-gray-2;
}
}
& pre {
@apply border;
}
}
body:not(:has(.ddoc)) {
& pre:has(code.highlight),
& pre.highlight:has(code) {
@apply px-8 py-6 max-sm:-mx-4;
@apply max-sm:rounded-none !important;
}
& pre:has(code.highlight):where(:hover, :focus) + .copyButton,
& pre.highlight:has(code):where(:hover, :focus) + .copyButton {
@apply opacity-100;
}
.copyButton {
@apply opacity-0 text-foreground-secondary transition-all duration-100
absolute top-2 right-2 p-1 rounded;
&:hover,
&:focus {
@apply opacity-100 bg-foreground-quaternary;
}
&:active {
transform: scale(1.2);
}
}
}
.markdownBlockTitle + div > pre:has(code.highlight) {
@apply rounded-t-none border-t-0;
}
.ddoc .markdown tr:nth-child(2n) {
@apply bg-background-secondary !important;
}
.markdownBlockTitle {
background-color: var(--bgColor-muted, var(--color-canvas-subtle));
@apply px-8 py-3 max-sm:-mx-4 sm:rounded-t-md border text-sm font-semibold
dark:bg-background-secondary dark:text-foreground-secondary
dark:border-background-tertiary;
}
.markdown-body h2:hover .anchor-end {
opacity: 1;
}
:root {
font-feature-settings: "cv05" on, "cv08" on, "cv09" on, "ss01" on, "ss08" on;
}
/* Common styles for all CTAs */
.docs-cta {
@apply border text-balance text-black font-bold inline-block py-3.5 px-4
rounded-md w-max hover:no-underline transition-colors duration-200;
}
/* Specific styles for runtime CTAs */
.runtime-cta {
@apply bg-runtime-400 border-runtime-400 hover:bg-runtime-300;
}
/* Override for when CTA is used in markdown body */
.markdown-body .runtime-cta,
.markdown-body .deploy-cta {
@apply border-gray-4 hover:!no-underline !text-gray-4;
}
/* Specific styles for deploy CTAs */
.deploy-cta {
@apply bg-deploy-500 border-deploy-500 hover:bg-deploy-400;
}
/* Specific styles for JSR CTAs */
.jsr-cta {
@apply bg-jsr-yellow-400 border-jsr-cyan-950 !text-jsr-cyan-950 border-2
hover:!no-underline hover:bg-jsr-yellow-300;
}
.homepage-link {
@apply block font-normal underline underline-offset-4;
}
.deploy-link {
@apply text-deploy-600 decoration-deploy-600/20 hover:decoration-deploy-600;
}
.runtime-link {
@apply text-runtime-600 decoration-runtime-600/20
hover:decoration-runtime-600;
}
.help-link {
@apply text-purple-600 dark:text-purple-300 decoration-purple-600/20
dark:decoration-purple-300/20 dark:hover:decoration-purple-300
hover:decoration-purple-600;
}
.sidebar__current-item {
color: var(--color-accent-fg);
}
.sidebar__current-item::before {
@apply content-[""] absolute left-0 w-[0.5em] text-center h-[1.3em]
bg-background-secondary dark:bg-background-tertiary;
clip-path: polygon(0% 10%, 100% 50%, 0% 90%);
}
.markdown-body .admonition a {
@apply text-primary underline underline-offset-2;
}
.markdown-body .admonition {
@apply py-4 px-6 pb-2 rounded-lg border-2 bg-gray-1/5 border-gray-3;
}
.markdown-body .admonition .title {
@apply font-bold uppercase flex items-center;
}
.markdown-body .admonition .title::before {
content: "";
@apply inline-block size-5 mr-2;
}
.markdown-body .admonition > p {
@apply mb-2;
}
.markdown-body .admonition.info {
@apply bg-primary/5 border-info/50 text-info;
}
.markdown-body .admonition.note {
@apply bg-primary/5 border-note/50 text-note;
}
.markdown-body .admonition.caution {
@apply bg-caution/5 border-caution/50 text-caution fill-caution;
}
.markdown-body .admonition.tip {
@apply bg-tip/5 border-tip/50 text-tip;
}
.markdown-body .admonition.info .title::before {
/* circle exclamation mark */
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="rgb(29 78 216)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><line x1="12" y1="16" x2="12" y2="12"/><line x1="12" y1="8" x2="12" y2="8"/></svg>');
}
.markdown-body .admonition.note .title::before {
/* circle exclamation mark */
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="rgb(29 78 216)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><line x1="12" y1="16" x2="12" y2="12"/><line x1="12" y1="8" x2="12" y2="8"/></svg>');
}
.markdown-body .admonition.caution .title::before {
/* exclamation mark in a filled warning triangle */
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgb(113 63 18)"><path fill-rule="evenodd" d="M9.401 3.003c1.155-2 4.043-2 5.197 0l7.355 12.748c1.154 2-.29 4.5-2.599 4.5H4.645c-2.309 0-3.752-2.5-2.598-4.5L9.4 3.003ZM12 8.25a.75.75 0 0 1 .75.75v3.75a.75.75 0 0 1-1.5 0V9a.75.75 0 0 1 .75-.75Zm0 8.25a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z" clip-rule="evenodd" /></svg>');
}
.markdown-body .admonition.tip .title::before {
/* lightbulb svg */
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="rgb(22 163 74)" stroke-width="1.5"><path stroke-linecap="round" stroke-linejoin="round" d="M12 18v-5.25m0 0a6.01 6.01 0 0 0 1.5-.189m-1.5.189a6.01 6.01 0 0 1-1.5-.189m3.75 7.478a12.06 12.06 0 0 1-4.5 0m3.75 2.383a14.406 14.406 0 0 1-3 0M14.25 18v-.192c0-.983.658-1.823 1.508-2.316a7.5 7.5 0 1 0-7.517 0c.85.493 1.509 1.333 1.509 2.316V18" /></svg>');
}
.markdown-body .module-info svg {
@apply inline-block w-6 h-6 !important;
}
.markdown-body .module-info h2 {
@apply flex gap-2 items-center;
}
.markdown-body .module-info h3 {
@apply my-2;
}
.markdown-body .module-info .item-content {
@apply ml-3;
}
.markdown-body .module-info p {
@apply mb-1;
}
.markdown-body .module-info ul {
@apply pl-6;
}
.markdown-body > pre.snippet-code[data-example-position="first"] {
@apply md:border-t md:border-b-0 md:pt-4 rounded-t h-full md:rounded-b-none;
}
.markdown-body > pre.snippet-code[data-example-position="middle"] {
@apply md:border-t-0 md:border-b-0 md:pt-0 md:pb-16 h-full md:rounded-none;
}
.markdown-body > pre.snippet-code[data-example-position="last"] {
@apply md:border-t-0 md:border-b md:pb-8 h-full md:rounded-t-none
md:rounded-b;
}
.deno-tabs {
@apply -mx-4 mb-4 md:mx-0;
}
.deno-tabs > ul.deno-tabs-buttons {
@apply flex flex-wrap list-none p-0 ml-4 md:m-0;
}
.deno-tabs > ul.deno-tabs-buttons > li {
@apply m-0 m-0;
}
.deno-tabs > ul.deno-tabs-buttons > li > button {
@apply inline-block mr-2 px-4 py-2 text-sm font-semibold text-slate-700
rounded-t bg-slate-100/80 hover:bg-blue-50 border border-transparent
border-b-0 dark:text-slate-400 dark:bg-transparent
dark:border-background-tertiary dark:hover:bg-slate-700;
}
.deno-tabs > ul.deno-tabs-buttons > li > button[data-active="true"] {
@apply border-slate-200 bg-slate-100 text-slate-950 border-b-0 z-10 -mb-[1px]
pb-[calc(0.5rem+1px)] relative dark:text-foreground-secondary
dark:bg-background-secondary dark:border-background-tertiary;
}
.deno-tabs > div.deno-tabs-content > div {
@apply hidden py-4 px-4 rounded rounded-tl-none bg-slate-100 border
border-slate-200 dark:bg-background-secondary
dark:border-background-tertiary;
}
.deno-tabs > div.deno-tabs-content > div[data-active="true"] {
@apply flex flex-col gap-4;
}
.deno-tabs > div.deno-tabs-content > div > p {
@apply mb-0;
}
.markdown-body .deno-tabs pre {
@apply border mx-0 bg-white border-slate-200 dark:bg-background-primary
dark:border-background-tertiary;
}
.deno-tabs .markdownBlockTitle {
@apply px-8 py-2 max-sm:-mx-4 sm:rounded-t-md border border-slate-200
bg-slate-50 text-slate-900 text-sm font-semibold
dark:bg-background-secondary dark:border-background-tertiary
dark:text-foreground-secondary;
}
/* Strips bottom margin in instances where multiple code samples exist in a tab. */
.markdown-body .deno-tabs :not(div > pre + div > pre) {
@apply mb-0;
}
.markdown-body .highlight pre,
.markdown-body pre {
@apply bg-gray-50 dark:border-background-tertiary
dark:bg-background-secondary;
}
/* Custom DDOC styles for the Deno documentation */
.ddoc {
@apply pt-0 !important;
#topnav {
@apply bg-background-primary !important;
svg,
path {
@apply fill-foreground-primary !important;
}
}
#categoryPanel {
@apply border-r border-foreground-tertiary;
@apply pt-4 !important;
& li:hover {
@apply bg-background-primary text-primary rounded-md !important;
> a {
@apply no-underline !important;
}
}
.active {
@apply bg-background-secondary text-foreground-secondary rounded-md
!important;
}
}
.contextLink {
@apply text-primary !important;
/* 40% opacity of for decoration color primary */
text-decoration-color: rgba(9, 107, 218, 0.4) !important;
}
.documentNavigation {
> h3 {
@apply hidden !important;
}
> ul {
@apply border-l border-foreground-tertiary !important;
> li > a {
@apply text-foreground-primary hover:bg-background-secondary rounded-lg
hover:no-underline py-1.5 px-3.5 hover:text-primary !important;
}
> li > ul > li > a {
@apply text-foreground-secondary hover:text-primary !important;
}
> ul > li a {
@apply hover:bg-background-secondary hover:text-primary rounded-lg
hover:no-underline !important;
}
}
}
.markdown {
& pre {
@apply border-gray-000 !important;
}
/* This comes from gfm css, should be replaced with something in our color palette once we establish it. */
:not(pre) > code {
@apply bg-foreground-quaternary hover:bg-foreground-tertiary !important;
}
& a:not(.no-color) {
@apply text-primary !important;
}
}
.markdown_summary :not(pre) > code {
background-color: var(--foreground-tertiary) !important;
}
.markdown_summary p {
@apply text-foreground-secondary;
}
}
#toc {
scrollbar-gutter: stable;
scrollbar-width: thin;
}
.copyButton[data-copied="true"] .copy-icon {
display: none;
}
.copyButton[data-copied="true"] .check-icon {
display: inline;
}