-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
94 lines (85 loc) · 1.87 KB
/
styles.css
File metadata and controls
94 lines (85 loc) · 1.87 KB
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
/* ── Code / monospace contrast normalization ──────────────────── */
:root {
--code-bg-inline: #2d2d2d;
--code-fg-inline: #e8e8e8;
--code-bg-block: #1e1e1e;
--code-fg-block: #d4d4d4;
--code-bg-output: #0d1117;
--code-fg-output: #c9d1d9;
}
/* Inline code in prose */
:not(pre) > code {
background: var(--code-bg-inline);
color: var(--code-fg-inline);
padding: 0.1em 0.35em;
border-radius: 3px;
font-size: 0.88em;
}
/* All fixed-width code blocks (not just bash/sh) */
pre,
div.sourceCode pre,
pre.sourceCode {
background: var(--code-bg-block);
color: var(--code-fg-block);
border-left: 3px solid #569cd6;
}
/* Ensure nested <code> inherits readable colors */
pre code {
color: inherit;
background: transparent;
}
/* Distinct style for command output blocks */
.cell-output pre {
background: var(--code-bg-output);
color: var(--code-fg-output);
border-left: 3px solid #3fb950;
font-size: 0.85em;
}
/* Column layout breathing room */
.columns {
gap: 1.5rem;
}
/* Step headers */
h2 {
border-bottom: 2px solid #dee2e6;
padding-bottom: 0.3em;
margin-top: 2.5rem;
}
/* File-inventory table */
.file-table {
font-family: var(--bs-font-monospace);
font-size: 0.85em;
}
/* Workflow comparison badges */
.badge-classic {
background: #6c757d;
color: white;
padding: 0.2em 0.6em;
border-radius: 4px;
font-size: 0.8em;
font-weight: bold;
}
.badge-trx {
background: #0d6efd;
color: white;
padding: 0.2em 0.6em;
border-radius: 4px;
font-size: 0.8em;
font-weight: bold;
}
/* tckinfo output box */
.tckinfo-box {
background: #0d1117;
color: #c9d1d9;
padding: 1rem 1.2rem;
border-radius: 6px;
border-left: 4px solid #58a6ff;
font-family: var(--bs-font-monospace);
font-size: 0.82em;
overflow-x: auto;
white-space: pre;
}
.tckinfo-box .highlight {
color: #ffa657;
font-weight: bold;
}